- 1
- 2
- 3
- 4
- 5
The example in this article describes the automatic picture carousel slideshow effect with javascript. Share it with everyone for your reference. The details are as follows:
This is a code based on JavaScript that implements automatic picture carousel slideshow with dots. The implementation process is very simple.
Operation rendering: -------------------View the effect Download the source code---------- --------
Tips: If the browser does not work properly, you can try switching the browsing mode.
(1) Introduce CSS style in the head area:
<link rel="stylesheet" href="css/zzsc.css" type="text/css" media="screen" />
(2) js code:
<script type="text/javascript" src="js/jquery-min-1.7.js" charset="utf-8"></script> <script src="js/all_dfd5691e.js"></script> <script> $(function () { new SlideShow({ nav: "#controller", effect : "fade", target: "#target", activeClass: "active", next: "#next", prev: "#prev", auto: true }) }) </script>
The js code that brings some automatic picture carousel slide effects to everyone is as follows
<link rel="stylesheet" href="css/zzsc.css" type="text/css" media="screen" />js带点自动图片轮播幻灯片特效
<script type="text/javascript" src="js/jquery-min-1.7.js" charset="utf-8"></script> <script src="js/all_dfd5691e.js"></script> <script> $(function () { new SlideShow({ nav: "#controller", effect : "fade", target: "#target", activeClass: "active", next: "#next", prev: "#prev", auto: true }) }) </script>
- 1
- 2
- 3
- 4
- 5
The above is the js code with automatic picture carousel slideshow special effects shared with you. I hope you can like it and apply it in practice.