移動端滾動穿透問題完美解決方案

問題

衆所周知,移動端當有 fixed 遮罩背景和彈出層時,在屏幕上滑動可以滑動背景下面的內容,這就是臭名昭著的滾動穿透問題css

以前搜索了一圈,找到下面兩種方案html

css 之 overflow: hidden

.modal-open {
&, body {
overflow: hidden;
height: 100%;
}
}

頁面彈出層上將 .modal-open 添加到 html 上,禁用 html 和 body 的滾動條
可是這個方案有兩個缺點:git

    • 因爲 html 和 body的滾動條都被禁用,彈出層後頁面的滾動位置會丟失,須要用 js 來還原
    • 頁面的背景仍是可以有滾的動的效果

js 之 touchmove + preventDefault

modal.addEventListener('touchmove', function(e) {
e.preventDefault();
}, false);

這樣用 js 阻止滾動後看起來效果不錯了,可是也有一個缺點:github

  • 彈出層裏不能有其它須要滾動的內容(如大段文字須要固定高度,顯示滾動條也會被阻止)

上面兩個方案都有缺點,今天用英文關鍵字 google 了一下,才發現原來還有更好的方案bootstrap

解決方案 position: fixed

body.modal-open {
position: fixed;
width: 100%;
}

若是隻是上面的 css,滾動條的位置一樣會丟失
因此若是須要保持滾動條的位置須要用 js 保存滾動條位置關閉的時候還原滾動位置瀏覽器

/**
* ModalHelper helpers resolve the modal scrolling issue on mobile devices
* https://github.com/twbs/bootstrap/issues/15852
* requires document.scrollingElement polyfill https://github.com/yangg/scrolling-element
*/
var ModalHelper = (function(bodyCls) {
var scrollTop;
return {
afterOpen: function() {
scrollTop = document.scrollingElement.scrollTop;
document.body.classList.add(bodyCls);
document.body.style.top = -scrollTop + 'px';
},
beforeClose: function() {
document.body.classList.remove(bodyCls);
// scrollTop lost after set position:fixed, restore it back.
document.scrollingElement.scrollTop = scrollTop;
}
};
})('modal-open');

這樣上面3個缺點都解決了,至此滾動穿透就完美解決ui

document.scrollingElement

由於瀏覽器獲取和設置 scrollTop 存在兼容性,爲了簡化上面的示例,我直接使用了 document.scrollingElement 這個新標準,對於不支持的瀏覽器我寫了個 polyfill document.scrollingElement.js
相關文章
相關標籤/搜索