iOS 10 Safari: Prevent scrolling behind a fixed overlay and maintain scroll position

前端 未结 10 2158
我寻月下人不归
我寻月下人不归 2020-12-12 13:51

I\'m not able to prevent the main body content from scrolling while a fixed position overlay is showing. Similar questions have been asked many times, but all of the techniq

10条回答
  •  眼角桃花
    2020-12-12 14:31

    When your overlay is opened, you can add a class like prevent-scroll to body to prevent scrolling of elements behind your overlay:

    body.prevent-scroll {
      position: fixed;
      overflow: hidden;
      width: 100%;
      height: 100%;
    }
    

    https://codepen.io/claudiojs/pen/ZKeLvq

提交回复
热议问题