标签:ar sp on 问题 cti amp as tt c
解决方法:
将源码的Carousel.js的onDrag方法中的
if ((currentActiveIndex === 0 && delta > 0) || (currentActiveIndex === maxIndex && delta < 0)) { delta *= 0.5; }
改成
if ((currentActiveIndex === 0 && delta > 0) || (currentActiveIndex === maxIndex && delta < 0)) {
return;
}
标签:ar sp on 问题 cti amp as tt c
原文地址:http://www.cnblogs.com/xiaocaoydj/p/4098793.html