我搜索了解决方案,但无法找到。
owl-carousel keep logs
由于目标被视为被动,无法阻止被动事件侦听器内的默认。见https://www.chromestatus.com/features/5093566007214080
我正在使用owl-carousel 2.2.0 https://github.com/OwlCarousel2/OwlCarousel2
答案 0 :(得分:3)
解决方案 - 在owl.carousel.css中添加:
.owl-carousel
{
touch-action: manipulation;
}
答案 1 :(得分:1)
您可以使用此css修复您的错误
.owl-carousel {
touch-action:none; }
答案 2 :(得分:0)
touch-action: manipulation;
这行救了我。