mySwiper.updateAutoHeight(speed)
当autoHeight为启用状态,设置更新swiper高度的时间。
speed:number 速度ms(可选)
speed:number 速度ms(可选)
mySwiper.updateAutoHeight(speed)信息
- 类型:
- function
- 启用版本:
- 4.2.0
使用方法示例
从Swiper7开始,容器默认类名由'.swiper-container'变更为'.swiper'。
<script language="javascript">
var mySwiper = new Swiper('.swiper',{
autoHeight : true,
})
$('#btn1').click(function(){
mySwiper.slideTo(5,0);
mySwiper.updateAutoHeight(2600);
})
</script>
转载原创文章请注明:文章转载自:Swiper中文网 [https://www.swiper.com.cn]
本文地址:https://www.swiper.com.cn/api/methods/418.html