Home > Web Front-end > JS Tutorial > body text

jQuery implements image carousel special effects code sharing_jquery

WBOY
Release: 2016-05-16 15:39:10
Original
1108 people have browsed it

The example in this article describes the jQuery ultra-exquisite picture carousel slideshow effect. Share it with everyone for your reference. The details are as follows:
The jquery image carousel plug-in PgwSlider is a very simple jquery plug-in that can help you quickly create a vertical carousel image.
Operation rendering:

Tips: If the browser does not work properly, you can try switching the browsing mode.
(1) Introduce CSS style in the head area:

<link href="css/pgwslider.min.css" rel="stylesheet">
Copy after login

(2) js code:

<script src="js/jquery.min.js"></script>
<script src="js/pgwslider.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
 $(document).ready(function() {
 $('.pgwSlider').pgwSlider();
 });
});
</script>
Copy after login

The jQuery ultra-exquisite picture carousel special effects code shared with you is as follows





jquery图片轮播插件PgwSlider
<link href="css/pgwslider.min.css" rel="stylesheet">

<script src="js/jquery.min.js"></script>
<script src="js/pgwslider.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
 $(document).ready(function() {
 $('.pgwSlider').pgwSlider();
 });
});
</script>

  • Paris, France
  • Montréal, QC, Canada
  • Shanghai, China
  • New York, NY, USA
Copy after login

The above is the jQuery vertical image carousel special effect code shared with you. I hope you can like it and apply it in practice.

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template