gpt4 book ai didi

javascript - 在iOS中window.scrollto和scrollIntoView无法顺利滚动

转载 作者:行者123 更新时间:2023-12-02 19:44:56 26 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 - 在iOS中window.scrollto和scrollIntoView无法顺利滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59644642/

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