swiper
Posted shengnan_2017
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swiper相关的知识,希望对你有一定的参考价值。
对于轮播图的使用,如果不想自己写,网上有很多大神,会把写好的组件上传,供大家使用,下载
swiper就是一个很好用的组件,可以去swiper的官网下载:http://www.swiper.com.cn/download/
官网有中文也有英文,里面会有很多demo,基本可以满足日常开发,是开源、免费、强大的移动端触摸滑动插件。
Swiper使用方法
1.首先加载插件,需要用到的文件有swiper.min.js和swiper.min.css文件。
!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。
2.HTML内容。
<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:最好是挨着</body>标签
new Swiper(swiperContainer, parameters)
一个页面中引用多个Swiper可以给每个Swiper加上ID或Class区分,要保留默认的类名swiper-container
HTML
<div class="swiper-container" id="swiper1">....
<div class="swiper-container" id="swiper2">....
<div class="swiper-container" id="swiper3">....
JS
var swiper1 = new Swiper(‘#swiper1‘);
var swiper2 = new Swiper(‘#swiper2‘);
var swiper2 = new Swiper(‘#swiper2‘);
var swiper3 = new Swiper(‘#swiper3‘);
<script> var mySwiper = new Swiper (‘.swiper-container‘, { direction: ‘vertical‘, loop: true, // 如果需要分页器 pagination: ‘.swiper-pagination‘, // 如果需要前进后退按钮 nextButton: ‘.swiper-button-next‘, prevButton: ‘.swiper-button-prev‘, // 如果需要滚动条 scrollbar: ‘.swiper-scrollbar‘, }) </script> </body>
以上是关于swiper的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 slick/swiper/或任何其他插件或原始代码制作以下滑块?