mySwiper.update(updateTranslate)
更新Swiper,这个方法包含了updateContainerSize,updateSlidesSize,updateProgress,updatePagination,updateClasses方法。
可选参数:updateTranslate,默认false,设置为true则重新计算Wrapper的位移。
可选参数:updateTranslate,默认false,设置为true则重新计算Wrapper的位移。
mySwiper.update(updateTranslate)参数
- 启用版本:
- 3.0.0
使用方法示例
<script language="javascript">
var mySwiper = new Swiper('.swiper-container',{
pagination : '.swiper-pagination',
})
$('#btn1').click(function(){
$(".swiper-wrapper .swiper-slide1").remove();
})
$('#btn2').click(function(){
mySwiper.update()
alert('更新成功');
})
</script>
转载原创文章请注明:文章转载自:Swiper中文网 [https://3.swiper.com.cn]
本文地址:https://3.swiper.com.cn/api/function/2015/0308/257.html