Home >Web Front-end >JS Tutorial >Based on jQuery full screen focus map left and right switching plug-in responsiveslides_jquery
Responsiveslides, a full-screen focus map switching plug-in based on jQuery, is an automatic carousel switching special effect download with left and right arrows and index buttons.
The rendering is as follows:
Online preview Source code download
html code:
<script type="text/javascript"> $(function () { // Slideshow $("#slider").responsiveSlides({ auto: true, pager: false, nav: true, speed: 500, timeout:4000, pager: true, pauseControls: true, namespace: "callbacks" }); }); </script> </head> <body> <!-- Slideshow --> <div class="callbacks_container"> <ul class="rslides" id="slider"> <li><a href="http://sc.chinaz.com/"><img src="images/1.jpg" alt=""></a></li> <li><a href="http://sc.chinaz.com/"><img src="images/2.jpg" alt=""></a></li> <li><a href="http://sc.chinaz.com/"><img src="images/1.jpg" alt=""></a></li> <li><a href="http://sc.chinaz.com/"><img src="images/2.jpg" alt=""></a></li> </ul> </div> </body>