码迷,mamicode.com
首页 > 其他好文 > 详细

图片轮换效果

时间:2014-06-16 10:09:47      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:style   class   java   ext   color   width   

<script type="text/javascript" src="jquery-1.4.2.js"></script>
<style>
ul(list-style:none;width:360px;height:200px;position:absolute;)
li{position:absolute;}
</style>
<div class="change">
    <ul>
        <li><img src="1.jpg" width="350px" height="200px"></li>
        <li><img src="2.jpg" width="350px" height="200px"></li>
        <li><img src="3.jpg" width="350px" height="200px"></li>
        <li><img src="4.jpg" width="350px" height="200px"></li>
    </ul>
</div>
<script>
    $(function(){
        $(".change ul li:not(:first)").hide();
        setInterval(function(){
            if($(".change ul li:first").is(":visible")){
                $(".change ul li:first").fadeIn("slow");
                $(".change ul li:last").hide();
            } else {
                $(".change ul li:visible").next().fadeIn("slow");    
            }
        },1000);
    });
</script>

图片轮换效果,布布扣,bubuko.com

图片轮换效果

标签:style   class   java   ext   color   width   

原文地址:http://www.cnblogs.com/xlz307/p/3783622.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!