首页 > 代码库 > 图片轮换效果
图片轮换效果
<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>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。