gpt4 book ai didi

javascript - window.scrollto和scrollIntoView在ios中滚动不顺畅

转载 作者:行者123 更新时间:2023-12-02 19:44:55 31 4
gpt4 key购买 nike

我有一个固定的顶栏,当我点击它时,页面会滚动到相应的部分。然而,它在我的 iphone8(ios13) 中滚动不顺畅,而在 chrome 和 android 中则完美运行。我尝试使用scrollIntoview,但它也不起作用。这是代码

scrollToAnchor = tabIndex => {
window.scrollTo({
top: this.state.tabListTop[tabIndex] - 76,
behavior: 'smooth'
})
}

最佳答案

您可以通过老式方式实现此目的:

smoothScroll = (height) => {
// "height" is the Height you want to scroll to
var i = 10;
var int = setInterval(function() {
window.scrollTo(0, i);
i += 10;
if (i >= height ) clearInterval(int);
}, 20);
}

关于javascript - window.scrollto和scrollIntoView在ios中滚动不顺畅,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59644642/

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