Home > Article > Web Front-end > jquery ad seamless carousel example
The example in this article demonstrates the seamless rotation effect of jquery ads for your reference. The specific content is as follows
You need to add five pictures and reference the jquery library
Vertical rotation example :
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jquery广告无缝轮播代码演示</title> <style type="text/css"> li{ list-style:none; } .mains{ width:700px; margin:0 auto; } .mains .title{ font-size:25px; padding:10px 0 5px 50px; } .g1{ width:380px; height:180px; } </style> <script type="text/javascript" src="js/jquery.min.js"></script> </head> <body> <div class="mains"> <div class="title">jquery广告无缝轮播代码演示</div> <div class="g1" style="overflow: hidden;"> <ul id="ulID" style="position: relative; height: 1800px; width: 380px; top: 0px;"> <li style="width: 380px; height: 180px; float: left;"> <img src="img/1.jpg" style="width: 380px; height: 180px;"></li> <li style="width: 380px; height: 180px; float: left;"> <img src="img/2.jpg" style="width: 380px; height: 180px;"></li> <li style="width: 380px; height: 180px; float: left;"> <img src="img/3.jpg" style="width: 380px; height: 180px;"></li> <li style="width: 380px; height: 180px; float: left;"> <img src="img/4.jpg" style="width: 380px; height: 180px;"></li> <li style="width: 380px; height: 180px; float: left;"> <img src="img/5.jpg" style="width: 380px; height: 180px;"></li> <li style="width: 380px; height: 180px; float: left;"> <img src="img/1.jpg" style="width: 380px; height: 180px;"></li> <li style="width: 380px; height: 180px; float: left;"> <img src="img/2.jpg" style="width: 380px; height: 180px;"></li> <li style="width: 380px; height: 180px; float: left;"> <img src="img/3.jpg" style="width: 380px; height: 180px;"></li> <li style="width: 380px; height: 180px; float: left;"> <img src="img/4.jpg" style="width: 380px; height: 180px;"></li> <li style="width: 380px; height: 180px; float: left;"> <img src="img/5.jpg" style="width: 380px; height: 180px;"></li> </ul> </div> </div> <script type="text/javascript"> var PlaceTop = parseInt($("#ulID").css("top")); var int; function moveUL(){ var ulID = $("#ulID"); PlaceTop = --PlaceTop; if(PlaceTop == -900) { PlaceTop = 0; } ulID.css("top",PlaceTop); if(PlaceTop < -900){ alert("Eror!"); clearInterval(int); } } int=setInterval("moveUL()",10); $(".g1").hover(function(){ clearInterval(int); },function(){ int=setInterval("moveUL()",10); }); </script> </body> </html>
The above is the entire content of this article. I hope it will be helpful to everyone’s learning. I also hope that everyone will support the PHP Chinese website.
For more articles related to jquery ad seamless carousel examples, please pay attention to the PHP Chinese website!