Swiper中文论坛

标题: 鼠标在swiper 停止滑动,鼠标移出swiper 继续滑动 [打印本页]

作者: vvka    时间: 2015-12-16 22:30
标题: 鼠标在swiper 停止滑动,鼠标移出swiper 继续滑动
http://www.swiper.com.cn/api/function/2015/0405/271.html

如何把这个锁定的判断设定为鼠标 在滑动块内  和块外?  谢谢。。。。。。老师。。。。

<script language="javascript"> var mySwiper = new Swiper('.swiper-container',{autoplay : 1000,})$('#btn1').click(function(){$("#showhtml").html('锁住状态');mySwiper.lockSwipes();})$('#btn2').click(function(){$("#showhtml").html('一般状态');mySwiper.unlockSwipes();})</script>



作者: 纯洁的司徒    时间: 2016-1-7 19:38
<script language="javascript">
   var mySwiper = new Swiper( '.swiper-container' ,
        {autoplay : 1000,}
         )
$('.swiper-container').hover({function(){
           mySwiper.lockSwipes();
          },function(){
          mySwiper.unlockSwipes();
};
})
额,不太确定,但是你说的应该是这样吧,但是如果你想做,鼠标经过自动播放就暂停的话,用的其实不是这两个。

<script language="javascript">
   var mySwiper = new Swiper( '.swiper-container' ,
        {autoplay : 1000,}
         )
$('.swiper-container').hover({function(){
           swiper.stopAutoplay();
          },function(){
          swiper.startAutoplay();
};
})




欢迎光临 Swiper中文论坛 (http://bbs.swiper.com.cn/) Powered by Discuz! X3.2