1.首先加载插件,需要用到的文件有swiper.min.js和swiper.min.css文件。
1 2 3 4 5 6 7 8 9 | <!DOCTYPE html> < html > < head > < link rel = "stylesheet" href = "path/to/swiper.min.css" > </ head > < body > < script src = "path/to/swiper.min.js" ></ script > </ body > </ html > |
如果你的页面加载了 jQuery.js或者zepto.js,你可以选择使用更轻便的 swiper.jquery.min.js。
1 2 3 4 | <!DOCTYPE html>< html >< head > ... < link rel = "stylesheet" href = "path/to/swiper.min.css" ></ head >< body > ... < script src = "path/to/jquery.js" ></ script > < script src = "path/to/swiper.jquery.min.js" ></ script ></ body ></ html > |
2.HTML内容。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | < div class = "swiper-container" > < div class = "swiper-wrapper" > < div class = "swiper-slide" >Slide 1</ div > < div class = "swiper-slide" >Slide 2</ div > < div class = "swiper-slide" >Slide 3</ div > </ div > <!-- 如果需要分页器 --> < div class = "swiper-pagination" ></ div > <!-- 如果需要导航按钮 --> < div class = "swiper-button-prev" ></ div > < div class = "swiper-button-next" ></ div > <!-- 如果需要滚动条 --> < div class = "swiper-scrollbar" ></ div > </ div > |
导航等组件可以放在container之外
3.你可能想要给Swiper定义一个大小,当然不要也行。
1 2 3 4 | .swiper-container { width : 600px ; height : 300px ; } |
4.初始化Swiper:最好是挨着</body>标签
1 2 3 4 5 6 7 8 9 10 11 | var mySwiper = new Swiper( '.swiper-container' , { direction: 'vertical' , loop: true , // 如果需要分页器 pagination: '.swiper-pagination' , // 如果需要前进后退按钮 nextButton: '.swiper-button-next' , prevButton: '.swiper-button-prev' , // 如果需要滚动条 scrollbar: '.swiper-scrollbar' , }) |
如果不能写在HTML内容的后面,则需要在页面加载完成后再初始化。
1 | window.onload = function () { ...} |
或者这样(Jquery和Zepto)
1 2 3 | < script type = "text/javascript" > $(document).ready(function () { ...}) </ script > |
5.完成。恭喜你,现在你的Swiper应该已经能正常切换了。
很多网友提到的自动轮播问题
加autoplay:1500,为1.5秒自动轮播1次
1 2 3 4 5 | var swiper = new Swiper( '.swiper-container' , { pagination: '.swiper-pagination' , paginationClickable: true , autoplay: 1500 }); |
滑动后自动轮播停止了,不想让他停止怎么办?
加autoplayDisableOnInteraction : false,
1 2 3 4 5 6 | var swiper = new Swiper( '.swiper-container' , { pagination: '.swiper-pagination' , paginationClickable: true , autoplay: 1500, autoplayDisableOnInteraction: false , //注意此参数,默认为true }); |
特别申明:
本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com