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>
  • 相关阅读:
    8.Http的状态码有哪些
    6、<!DOCTYPE>声明是什么意思
    6.px和em的区别
    5、什么叫优雅降级和渐进增强
    3、简述src和href的区别;@import和link的区别
    2、行内元素有哪些?块级元素有哪些? 空(void)元素有那些?行内元素和块级元素有什么区别?
    1、盒模型理解
    requests学习(一)——get请求
    【Flutter】功能型组件之跨组件状态共享
    【Flutter】功能型组件之数据共享
  • 原文地址:https://www.cnblogs.com/java20130723/p/3211500.html
Copyright © 2011-2022 走看看