东京热成人网站_XX另类XX伦理XXAV_亚洲精品无码成人AAA片_高清av中文字幕无码_手机看片国产欧美日韩高清_bd美妙第进化型

咨詢電話:
15628812133
24
2017/06

一個頁面如何使用多個swiper插件?

發(fā)布時間:2017-06-24 17:02:27
發(fā)布者:jiangbing
瀏覽量:
0

現(xiàn)在很多前端工程師會被要求寫滑動,swiper就是這樣一款滑動特效插件,面向手機、平板、電腦等移動終端。但是在寫頁面時難免會使用多個swiper插件,在我們最近的項目里愛加海外月子中心就出現(xiàn)了這個情況,那么應(yīng)該如何使用呢?

blob.png

swiper是通過共用的class(swiper-container)來實現(xiàn)效果,所以在共用的class前面加上 父元素(你可以定義一個class或id,如此次的.banner、#case)來區(qū)分。

var mySwiper = new Swiper('.banner .swiper-container',{
    loop: true,
	autoplay:3000,
    autoplayDisableOnInteraction: false,
	speed:500,
	// 如果需要分頁器
    pagination: '.banner .swiper-pagination',
	paginationClickable: true,
	grabCursor : true,
	nextButton: '.arrow-right',
    prevButton: '.arrow-left',
	parallax:true,
var mySwiper = new Swiper('#case .swiper-container',{
    loop: true,
	autoplay:3000,
    autoplayDisableOnInteraction: false,
	speed:500,
	// 如果需要分頁器
    pagination: '#case .swiper-pagination',
	paginationClickable: true,
	grabCursor : true,
	nextButton: '.arrow-right',
    prevButton: '.arrow-left',
	parallax:true,
 	 });

blob.png

blob.png

重點就在于這個類,如果一個頁面使用多個swiper插件時,要把各自的父級類名加上才能不沖突。改完 var,記得修改下 pagination 值,其他黑色字體部分,根據(jù)你的需求設(shè)置即可。

演示地址:http://www.hi7788.com/d/demo/swiper/

關(guān)鍵詞:
返回列表