美文网首页
[CSS] 页面在IOS webview中顺滑滑动

[CSS] 页面在IOS webview中顺滑滑动

作者: jiansheng | 来源:发表于2019-12-11 18:31 被阅读0次

给滚动容器增加样式

<div class="scroll-container">
    <div>1</div>
    <div>1</div>
    <div>1</div>
    <div>1</div>
    <div>1</div>
    <div>1</div>
    <div>1</div>
    <div>1</div>
    <div>1</div>
</div>
.scroll-container {
    height: 50px;
    overflow: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

demo:
https://stackblitz.com/edit/scroll-smooth

关键样式:
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;

相关文章

网友评论

      本文标题:[CSS] 页面在IOS webview中顺滑滑动

      本文链接:https://www.haomeiwen.com/subject/kcdagctx.html