TA的每日心情 | 奋斗 2019-1-12 18:40 |
---|
签到天数: 1 天 [LV.1]初来乍到
新手上路
- 积分
- 36
|
- var picxun = new Swiper('.in_pic .swiper-container', {
- loop: true,
- simulateTouch: false,
- slidesPerView: 2,
- spaceBetween: 10,
- autoplay: {
- delay: 4000,
- disableOnInteraction: false,
- },
- navigation: {
- nextEl: '.pic-but .next',
- prevEl: '.pic-but .prev',
- }
- });
- //js2
- $(".in_pic").mouseenter(function() {
- picxun.autoplay.stop();
- }).mouseleave(function() {
- picxun.autoplay.start();
- });
复制代码 页面中有两个.in_pic .swiper-container。。如果不使用JS2的效果,正常。。。
|
|