使用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 }
通常用来设定弹窗后禁止页面滚动效果,以及手机端顶部导航打开禁止页面滚动效果。

浙公网安备 33010602011771号