首页 > 代码库 > 无限轮播
无限轮播
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> *{ padding: 0; margin: 0; } ul li{list-style-type: none} #banner{ width: 800px; height: 400px; overflow: hidden; } #banner ul{ width: 3600px; overflow: hidden; } #banner ul>li{ width: 800px; height: 400px; float: left; } img{ max-width: 100%; } </style> </head> <body> <div id="banner"> <ul> <li><img src="http://www.mamicode.com/1.jpg" width="900px" height="400px"/></li> <li><img src="http://www.mamicode.com/2.jpg" width="900px" height="400px"/></li> <li><img src="http://www.mamicode.com/3.jpg" width="900px" height="400px"/></li> <li><img src="http://www.mamicode.com/4.jpg" width="900px" height="400px"/></li> </ul> </div> <input type="button" value="http://www.mamicode.com/left" class="left"/> <input type="button" value="http://www.mamicode.com/right" class="right"/> <input type="text" id="clock" size="35" /> <script src="http://www.mamicode.com/jquery.js"></script> <script> setTimeout("dong()",600); setInterval("dong()",2400); function dong() { $("#banner ul").animate({marginLeft:"-800px"},600, function () { $("#banner ul>li").eq(0).appendTo($("#banner ul")); $("#banner ul").css(‘marginLeft‘,‘0px‘); }); } </script> </body> </html>
无限轮播
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。