zoukankan      html  css  js  c++  java
  • 图片切换,带标题文字

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>图片切换,带标题文字</title>
    <meta http-equiv="X-UA-Compatible" content="IE=7" />
    <meta http-equiv="content-type" content="text/html; charset=gb2312" />
    <script type="text/javascript" src="common/jquery-1.2.6.min.js"></script>
    <link type="text/css" rel="stylesheet" href="common/common.css" />
    <style type="text/css">
    #play{500px;height:230px; border:#ccc 1px solid;}
    #playBg{margin-top:200px;z-index:1;filter:alpha(opacity=70);opacity:0.7;500px;position:absolute;height:30px;background:#000;}
    #playText{margin-top:200px;z-index:2;padding-left:10px;font-size:14px;font-weight:bold;340px;color:#fff;line-height:30px; overflow:hidden;position:absolute;cursor:pointer;}
    #playNum{margin:205px 5px 0 350px;z-index:3;145px; text-align:right;position:absolute;height:25px;}
    #playNum a{margin:0 2px;20px;height:20px;font-size:14px; font-weight:bold;line-height:20px;cursor:pointer;color:#000;padding:0 5px;background:#D7D6D7;text-align:center}
    #playShow img{500px;height:230px;}
    </style>
    <body>
    <div id="play">
     <ul>
            <li id="playBg"></li>
            <li id="playText"></li>
            <li id="playNum"><a>1</a><a>2</a><a>3</a><a>4</a><a>5</a><a>6</a></li>
            <li id="playShow">
                <a href="#" target="_blank"><img src="images/01.jpg" alt="澳大利亚:体验蓝山风光,感受澳洲风情"></a>
                <a href="#" target="_blank"><img src="images/02.jpg" alt="九月抄底旅游,马上行动"></a>
                <a href="#" target="_blank"><img src="images/03.jpg" alt="港澳旅游:超值特价,奢华享受"></a>
                <a href="#" target="_blank"><img src="images/04.jpg" alt="炎炎夏日哪里去,途牛带你海滨游"></a>
                <a href="#" target="_blank"><img src="images/05.jpg" alt="定途牛旅游线路,优惠购买缤纷乐相册"></a>
                <a href="#" target="_blank"><img src="images/03.jpg" alt="三亚自助游"></a>
            </li>
        </ul>
    </div>
    <script type=text/javascript>
    var t = n = 0, count = $("#playShow a").size();
    $(function(){
    $("#playShow a:not(:first-child)").hide();
    $("#playText").html($("#playShow a:first-child").find("img").attr('alt'));
    $("#playNum a:first").css({"background":"#FFD116",'color':'#A8471C'});
    $("#playText").click(function(){window.open($("#playShow a:first-child").attr('href'), "_blank")});
    $("#playNum a").click(function() {
       var i = $(this).text() - 1;
       n = i;
       if (i >= count) return;
       $("#playText").html($("#playShow a").eq(i).find("img").attr('alt'));
       $("#playText").unbind().click(function(){window.open($("#playShow a").eq(i).attr('href'), "_blank")})
       $("#playShow a").filter(":visible").hide().parent().children().eq(i).fadeIn(1200);
       $(this).css({"background":"#FFD116",'color':'#A8471C'}).siblings().css({"background":"#D7D6D7",'color':'#000'});
    });
    t = setInterval("showAuto()", 5000);
    $("#play").hover(function(){clearInterval(t)}, function(){t = setInterval("showAuto()", 5000);});
    })
    function showAuto()
    {
    n = n >= (count - 1) ? 0 : ++n;
    $("#playNum a").eq(n).trigger('click');
    }
    </script>
    </body>
    </html>
    感谢来访,共同学习!
  • 相关阅读:
    CSharpGL(36)通用的非托管数组排序方法
    CSharpGL(35)用ViewPort实现类似3DMax那样的把一个场景渲染到4个视口
    CSharpGL(34)以从零编写一个KleinBottle渲染器为例学习如何使用CSharpGL
    CSharpGL(33)使用uniform块来优化对uniform变量的读写
    CSharpGL(32)矩阵与四元数与角度旋转轴的相互转换
    CSharpGL(31)[译]OpenGL渲染管道那些事
    CSharpGL(30)用条件渲染(Conditional Rendering)来提升OpenGL的渲染效率
    Go如何使用数据库、缓存
    Go内置常用包
    从零开始基于go-thrift创建一个RPC服务
  • 原文地址:https://www.cnblogs.com/dingxiaowei/p/3058783.html
Copyright © 2011-2022 走看看