带有鼠标滚轮滚动插件速度的猫头鹰轮播

问题描述

我在Owl Carousel 2插件上使用Mouse Wheel,因为网站显示了如何实现它: https://owlcarousel2.github.io/OwlCarousel2/demos/mousewheel.html

这是我的示例:https://z-testing.000webhostapp.com/_owlcarousel/

这是我的代码

owl.on('mousewheel','.owl-stage',function (e) {
  if (e.deltaY>0) {
      owl.trigger('next.owl');
  } else {
      owl.trigger('prev.owl');
  }
  e.preventDefault();
});

我遇到的问题是滚动不平滑,滚动速度非常快,并且一次滚动浏览6至10张幻灯片,无法使用。 我希望它尽可能平滑地滚动鼠标滚轮。

我找到了一个集成了mousewheel插件的灯箱插件,并检查了它们的工作方式,但是我只是不知道如何在我的代码中使用它,您能帮我吗?

这是插件http://fancybox.net

您可以查看Image gallery (ps,try using mouse scroll wheel) 弹出库示例。

如果下载了该插件,则可以看到他们以这种方式实现了Mouse Wheel插件

if ($.fn.mousewheel) {
    wrap.bind('mousewheel.fb',function(e,delta) {
        if (busy) {
            e.preventDefault();

        } else if ($(e.target).get(0).clientHeight == 0 || $(e.target).get(0).scrollHeight === $(e.target).get(0).clientHeight) {
            e.preventDefault();
            $.fancybox[ delta > 0 ? 'prev' : 'next']();
        }
    });
}

您能帮我使其与Owl Carousel一起正常工作吗?

解决方法

您需要使用smartSpeed功能来设置滚动速度。

https://owlcarousel2.github.io/OwlCarousel2/docs/api-options.html

var owl = $('.owl-carousel');
$('.owl-carousel').owlCarousel({
  loop:true,margin:0,nav:true,smartSpeed:1000,responsive:{
      0:{
          items:1
      },600:{
          items:1
      },1000:{
          items:1
      }
  }
});
owl.on('mousewheel','.owl-stage',function (e) {
  if (e.deltaY>0) {
      owl.trigger('next.owl');
  } else {
      owl.trigger('prev.owl');
  }
  e.preventDefault();
});
$(document,window,'html').mouseleave(function(){
  $("#footer").fadeOut();
}).mouseenter(function(){
  $("#footer").fadeIn();
});
$(function(){
  $("#header").load("includes/header.html");
  $("#footer").load("includes/footer.html");
});
body { padding-top: 0px;}
<link rel="stylesheet" href="https://z-testing.000webhostapp.com/_owlcarousel/app/css/normalize.css">
<link rel="stylesheet" href="https://z-testing.000webhostapp.com/_owlcarousel/app/css/owl.carousel.min.css">
<link rel="stylesheet" href="https://z-testing.000webhostapp.com/_owlcarousel/app/css/owl.theme.default.min.css">
<link rel="stylesheet" href="https://z-testing.000webhostapp.com/_owlcarousel/app/css/bootstrap.min.css">
<link rel="stylesheet" href="https://z-testing.000webhostapp.com/_owlcarousel/app/css/main.css">

  <header id="header"></header>

  <div class="owl-carousel owl-theme">
    <div class="item" style="background-image:url(https://z-testing.000webhostapp.com/_owlcarousel/app/img/carousel-3-ux.png)"></div>
    <div class="item" style="background-image:url(https://z-testing.000webhostapp.com/_owlcarousel/app/img/carousel-4-editorial.png)"></div>
    <div class="item" style="background-image:url(https://z-testing.000webhostapp.com/_owlcarousel/app/img/carousel-5-senaletica.png)"></div>
  </div>

  <footer id="footer"></footer>

  <script src="https://z-testing.000webhostapp.com/_owlcarousel/app/js/vendor/modernizr-3.11.2.min.js"></script>
  <script src="https://z-testing.000webhostapp.com/_owlcarousel/app/js/jquery-3.5.1.min.js"></script>
  <script src="https://z-testing.000webhostapp.com/_owlcarousel/app/js/bootstrap.bundle.min.js"></script>
  <script src="https://z-testing.000webhostapp.com/_owlcarousel/app/js/jquery.justifiedGallery.min.js"></script>
  <script src="https://z-testing.000webhostapp.com/_owlcarousel/app/js/owl.carousel.min.js"></script>
  <script src="https://z-testing.000webhostapp.com/_owlcarousel/app/js/jquery.mousewheel.min.js"></script>
  <script src="https://z-testing.000webhostapp.com/_owlcarousel/app/js/main.js"></script>

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...