移动端弹出层后一系列问题总结

来源:互联网 发布:网络网络维护 编辑:程序博客网 时间:2024/06/14 08:05
  1. iso滚动条滚动慢
    解决方案: -webkit-overflow-scrolling: touch;
  2. 弹出层下层页面滚动
    解决方案1:
    .modal-open{height:100%; overflow:hidden; position:fixed;}
    js弹出层显示动作中给body,addClass。
    弹出层关闭动作中给body,removeClass。
    解决方案2:
document.addEventListener('touchmove', function (event) {            event.preventDefault();    },false);