TA的每日心情 | 怒 2020-5-30 16:17 |
---|
签到天数: 1 天 [LV.1]初来乍到
新手上路
- 积分
- 10
|
- <script>
- var Swiper_landscape = new Swiper('.swiper-landscape', {
- spaceBetween : 20,
- autoplay : {
- delay: 1,
- disableOnInteraction: false,
- },
- speed:3000,
- loop : true,
- freeMode:true,
- slidesPerView : 4,
- slidesPerGroup : 1,
- touchMoveStopPropagation : false
- });
- // 鼠标移入停止自动滚动/鼠标移出开始自动滚动
- $('.swiper-landscape').mouseover(function(){
- Swiper_landscape.autoplay.stop();
- })
- $('.swiper-landscape').mouseout(function(){
- Swiper_landscape.autoplay.start();
- })
- </script>
复制代码 有什么解决办法么。
|
|