gpt4 book ai didi

html - 网站不会在 chrome 中向下滚动

转载 作者:可可西里 更新时间:2023-11-01 13:20:46 25 4
gpt4 key购买 nike

由于某种原因根本没有向下滚动,它在 Internet Explorer 和 Mozila 上工作得很好,但在谷歌浏览器上它根本拒绝向下滚动。请帮我!我不知道该怎么办。

菲利普

最佳答案

只需从 jquery.simplr.smoothscroll.js 文件中删除 return false,它会阻止在 chrome 浏览器中滚动....

$('body').mousewheel(function(event, delta) {
wheel = true;
if (delta < 0) // down
top = (top+viewport) >= doc.height() ? top : top+=step;
else // up
top = top <= 0 ? 0 : top-=step;

body.stop().animate({scrollTop: top}, speed, self.ease, function () {
wheel = false;
});
// return false; // remove this
});

关于html - 网站不会在 chrome 中向下滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49292320/

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