使用css阻止页面滚动

1 html.disable-scrolling {
2   overflow: hidden;
3   /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
4   position: fixed;
5   height: 100vh;
6   width: 100vw;
7 }

通常用来设定弹窗后禁止页面滚动效果,以及手机端顶部导航打开禁止页面滚动效果。

posted @ 2018-05-24 22:59  不知道以后还可以改名字不  阅读(164)  评论(0)    收藏  举报