作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个固定的顶栏,当我点击它时,页面会滚动到相应的部分。然而,它在我的 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/
我是一名优秀的程序员,十分优秀!