我正在寻找这种效果的东西:
$(window).scroll(function(event){
if (/* magic code*/ ){
// upscroll code
} else {
// downscroll code
}
});
有任何想法吗?
我正在寻找这种效果的东西:
$(window).scroll(function(event){
if (/* magic code*/ ){
// upscroll code
} else {
// downscroll code
}
});
有任何想法吗?
检查当前scrollTop
与以前scrollTop
var lastScrollTop = 0;
$(window).scroll(function(event){
var st = $(this).scrollTop();
if (st > lastScrollTop){
// downscroll code
} else {
// upscroll code
}
lastScrollTop = st;
});
您无需跟踪前一个滚动顶部即可完成此操作,因为所有其他示例都需要:
$(window).bind('mousewheel', function(event) {
if (event.originalEvent.wheelDelta >= 0) {
console.log('Scroll up');
}
else {
console.log('Scroll down');
}
});
我不是这方面的专家,因此请随意进一步研究,但似乎当您使用 时$(element).scroll
,正在侦听的事件是“滚动”事件。
但是,如果您专门mousewheel
使用 bind侦听事件,则originalEvent
回调的 event 参数的属性包含不同的信息。该信息的一部分是wheelDelta
. 如果是肯定的,则您将鼠标滚轮向上移动。如果它是负数,则您将鼠标滚轮向下移动。
我的猜测是mousewheel
,即使页面不滚动,鼠标滚轮转动时也会触发事件;可能不会触发“滚动”事件的情况。如果需要,您可以event.preventDefault()
在回调的底部调用以防止页面滚动,这样您就可以将 mousewheel 事件用于页面滚动以外的其他内容,例如某种类型的缩放功能。
存储之前的滚动位置,然后查看新的滚动位置是大于还是小于该位置。
这是一种避免任何全局变量的方法(此处提供小提琴):
(function () {
var previousScroll = 0;
$(window).scroll(function(){
var currentScroll = $(this).scrollTop();
if (currentScroll > previousScroll){
alert('down');
} else {
alert('up');
}
previousScroll = currentScroll;
});
}()); //run this anonymous function immediately
这个帖子和其他答案可能有3 个解决方案。
方案一
var lastScrollTop = 0;
$(window).on('scroll', function() {
st = $(this).scrollTop();
if(st < lastScrollTop) {
console.log('up 1');
}
else {
console.log('down 1');
}
lastScrollTop = st;
});
解决方案2
$('body').on('DOMMouseScroll', function(e){
if(e.originalEvent.detail < 0) {
console.log('up 2');
}
else {
console.log('down 2');
}
});
解决方案3
$('body').on('mousewheel', function(e){
if(e.originalEvent.wheelDelta > 0) {
console.log('up 3');
}
else {
console.log('down 3');
}
});
我无法在 Safari 上对其进行测试
铬 42(赢 7)
火狐 37 (Win 7)
IE 11(赢8)
IE 10(赢 7)
IE 9(赢 7)
IE 8(赢 7)
我检查了 IE 11 和 IE 8 的副作用来自
if else
声明。因此,我将其替换if else if
为以下语句。
从多浏览器测试来看,我决定对常用浏览器使用解决方案3,对firefox和IE 11使用解决方案1。
我参考了这个答案来检测 IE 11。
// Detect IE version
var iev=0;
var ieold = (/MSIE (\d+\.\d+);/.test(navigator.userAgent));
var trident = !!navigator.userAgent.match(/Trident\/7.0/);
var rv=navigator.userAgent.indexOf("rv:11.0");
if (ieold) iev=new Number(RegExp.$1);
if (navigator.appVersion.indexOf("MSIE 10") != -1) iev=10;
if (trident&&rv!=-1) iev=11;
// Firefox or IE 11
if(typeof InstallTrigger !== 'undefined' || iev == 11) {
var lastScrollTop = 0;
$(window).on('scroll', function() {
st = $(this).scrollTop();
if(st < lastScrollTop) {
console.log('Up');
}
else if(st > lastScrollTop) {
console.log('Down');
}
lastScrollTop = st;
});
}
// Other browsers
else {
$('body').on('mousewheel', function(e){
if(e.originalEvent.wheelDelta > 0) {
console.log('Up');
}
else if(e.originalEvent.wheelDelta < 0) {
console.log('Down');
}
});
}
我知道已经有一个被接受的答案,但想发布我正在使用的内容,以防它可以帮助任何人。我得到了类似cliphex
mousewheel 事件的方向,但支持 Firefox。如果您正在执行诸如锁定滚动之类的操作并且无法获取当前滚动顶部,则这样做很有用。
在此处查看实时版本。
$(window).on('mousewheel DOMMouseScroll', function (e) {
var direction = (function () {
var delta = (e.type === 'DOMMouseScroll' ?
e.originalEvent.detail * -40 :
e.originalEvent.wheelDelta);
return delta > 0 ? 0 : 1;
}());
if(direction === 1) {
// scroll down
}
if(direction === 0) {
// scroll up
}
});