mySwiper.update(updateTranslate)
更新Swiper,就像重新初始化一样。这个方法包含了updateContainerSize,updateSlidesSize,updateProgress,updateClasses方法。
可选参数:updateTranslate,默认false,设置为true则重新计算Wrapper的位移。
可选参数:updateTranslate,默认false,设置为true则重新计算Wrapper的位移。
mySwiper.update(updateTranslate)信息
- 启用版本:
- 4.0.0
使用方法示例
从Swiper7开始,容器默认类名由'.swiper-container'变更为'.swiper'。
<script language="javascript">
var mySwiper = new Swiper('.swiper',{
pagination : '.swiper-pagination',
})
$('#btn1').click(function(){
$(".swiper-wrapper .swiper-slide1").remove();
})
$('#btn2').click(function(){
mySwiper.update()
alert('更新成功');
})
</script>
转载原创文章请注明:文章转载自:Swiper中文网 [https://www.swiper.com.cn]
本文地址:https://www.swiper.com.cn/api/methods/257.html