gpt4 book ai didi

javascript - 滚动事件在 chrome 上不起作用,在 firefox 上不精确

转载 作者:太空宇宙 更新时间:2023-11-04 07:39:33 27 4
gpt4 key购买 nike

我尝试为我的网站构建一个自定义滚动条,但它并不完美,而且我不知道如何改进它。它应该从一个位置滚动到另一个特定位置,但是每个滚动事件中像素的差异都会变大。它似乎也不适用于 chrome。

这里是 html 文件的链接:http://infographie.inraci.be/blc/blc.html

代码如下:

$(window).bind('mousewheel DOMMouseScroll', function(event){

var hauteur5 = $(window).height();
var scroll5 = $(window).scrollTop();

if (event.originalEvent.wheelDelta > 0 || event.originalEvent.detail < 0) {

$(window).scrollTo(scroll5-hauteur5/4,1,function(){

})
} else {
$(window).scrollTo(scroll5+hauteur5/4,1,function(){
})
}
});

最佳答案

如果你想检查这个片段:https://stackoverflow.com/a/38572744/3605379

在那里我检查了一周的超时速度。玩一玩,这样您就可以掌握正确的时机。

关于javascript - 滚动事件在 chrome 上不起作用,在 firefox 上不精确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48648502/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com