* { margin: 0; padding: 0; " />

* { margin: 0; padding: 0;"/>
 首页 > 作文

层级轮播图(animate)

更新时间:2023-04-07 07:09:39 阅读: 评论:0

层级轮播图(animate)

css

    <style type="text/css">        * {            margin: 0;            padding: 0;        }        ul, ol {            list-style: none;        }        .wrap {            width: 650px;            height: 250px;            margin: 100px auto 0;            position: relative;            overflow: hidden;        }        .wrap img {            display: block;        }        .wrap 歌颂教师的名言ul {            height: 250px;            z-index: 1;            position: relative;        }        .wrap ol {            height: 30px;            z-index: 2;            position: absolute;            bottom: 0;            right: 0;        }        .wrap > ul > li {            position: absolute;            top: 0;            left: 650px;        }        .wrap > ol > li {            float: left;            width: 20px;            height: 20px;            text-align: center;            line-height: 20px;            border: 1px solid white;            margin-right: 5px;            background: gray;        }        .wrap > ol > li:hover {            cursor: pointer;        }        .wrap li.active {            padding: 2px;            color: orange;            margin-top: -4px;            border: 1px solid orange;        }    </style>

  html、js

<div class="wrap">    <ul>        <li style="z-index:0;left:0;"><img src="images/01.jpg" alt=""/></li>        <li><img src="images/02.jpg" alt=""/></li>        <li><img src="images/03.jpg" alt=""/></li>        <li><img src="images/04.jpg" alt=""/></li>        <li><img src="images/05.jpg" alt=""/></l关于乡愁的诗句i>    </ul>    <ol>        <li class="active">1</li>        <li>2</li>        <li>3</li>        <li>4</li>        <li>5</li>    </ol></div><script type="text/javascript">   var timer = null;   var i养老服务中心ndex = 0;   var $olist = $("ol li");   var $ulist = $("ul li");   timer = tinterval( autoplay , 3000 );   function autoplay(){   index++;   if( index == $olist.size() ){   index = 0;   }   $olist.eq(ind年度考核登记表个人总结怎么写ex).addclass("active").siblings().removeclass("active");   $ulist.eq(index).animate({"left":0},1500,function(){   //当前运动的图片达到目标值后  将其余所有的图片恢复到left:650位置     $(this).css("zindex",0).siblings().css({"left":650,"zindex瑞士手表品牌排行榜":1})   })   }</script>

  

本文发布于:2023-04-07 07:09:37,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/13b0f8688151190edd042b5cb485d5cd.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:层级轮播图(animate).doc

本文 PDF 下载地址:层级轮播图(animate).pdf

上一篇:PHP extension
下一篇:返回列表
标签:目标值   瑞士   图片   层级
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
  • 层级轮播图(animate)
    层级轮播图(animate)css