使用鼠标滚动滚动到块的高度

时间:2016-03-03 05:53:31

标签: javascript jquery scroll

当滚动页面滚动恰好发生在其中的块的高度(内部代码)时怎么办?

我不想使用该库,因为有可能需要添加2-5行代码来解决滚动页面高度时滚动页面的问题(预定数量的像素)。

第二个问题是如何使其平滑滚动,这不是仅仅从一个单元切换到另一个单元的感觉。

function slide() {
  h = document.documentElement.clientHeight
  $(".one, .two, .three").css('height', h);
};

$(window).resize(slide);
$(document).ready(slide);
.one,
.two,
.two {
  display: block;
  position: relative;
  width: 100%;
}
.one {
  background: #CD5;
}
.two {
  background: aquamarine;
}
.three {
  background: #2196F3;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>

2 个答案:

答案 0 :(得分:2)

将您的滚动处理程序绑定到mousewheel和DOMMouseScroll事件,并使用(event.originalEvent.wheelDelta&gt; 0 || event.originalEvent.detail&lt; 0)来确定滚动的方向。然后使用$()。offset()。top来查找要滚动的div的顶部和$ .animate()来进行滚动。

&#13;
&#13;
function slide() {
  h = document.documentElement.clientHeight
  $(".one, .two, .three").css('height', h);
};
$(window).resize(slide);
$(document).ready(slide);


$(document).bind('mousewheel DOMMouseScroll', function(event) {
  scroll(event);
});

var num = 1;
var scrolling = false;

function scroll(event) {
  event.preventDefault();
  if (!scrolling) {
    scrolling = true;
    if (event.originalEvent.wheelDelta > 0 || event.originalEvent.detail < 0) {
      num--;
      num = num < 1 ? 1 : num;
    } else {
      num++;
      num = num > 3 ? 3 : num;
    }

    $('html, body').animate({
      scrollTop: $(".num" + num).offset().top
    }, 500, "linear", function() {
      scrolling = false;
    });
  }
}
&#13;
.one,
.two,
.two {
  display: block;
  position: relative;
  width: 100%;
}
.one {
  background: #CD5;
}
.two {
  background: aquamarine;
}
.three {
  background: #2196F3;
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<div class="one num1"></div>
<div class="two num2"></div>
<div class="three num3"></div>
&#13;
&#13;
&#13;

答案 1 :(得分:1)

根据我的理解,我已经在jsfiddle上创建了一个解决方案,请查看https://jsfiddle.net/v7ok83oa/

我正在使用鼠标滚轮事件。

<强> HTML

<div class="one">
  <h1>ONE</h1></div>
<div class="two">
  <h1>Two</h1></div>
<div class="three">
  <h1>Three</h1></div>

<强> CSS

* {
  margin: 0;
  padding: 0
}

.one,
.two,
.three {
  display: block;
  position: relative;
  width: 100%;
  overflow: auto;
}

.one {
  background: #CD5;
}

.two {
  background: aquamarine;
}

.three {
  background: #2196F3;
}

h1 {
  color: white;
  text-align: center;
}

<强>的jQuery

$(document).ready(function() {

      var h = $(document).height();
      var body = $("body");

      $(".one, .two, .three").css('height', h);


      $(document).on('mousewheel', function(e) {

        if (e.originalEvent.wheelDelta / 120 < 0) { // if Mouse wheel up
          var st = $(document).scrollTop();

          body.animate({
            scrollTop: st + h
          }, '500');


        } else if (e.originalEvent.wheelDelta / 120 > 0) { // if Mouse wheel down
          var st = $(document).scrollTop();

          body.animate({
            scrollTop: st - h
          }, '500');
        }
        console.log($('.one').height());

      });

    });

<强>更新 检查此https://jsfiddle.net/v7ok83oa/3/

如果您在动画结束前非常快地滚动事件触发器我已修复它