在作移動端項目的時候發現,若是彈窗的內容不少很長,在滑動彈窗時,蒙層下面的window窗體也會跟着一塊兒滾動,這樣帶來不好的視覺體驗:
當時也想了不少辦法,好比判斷滑動的元素,若是是彈窗裏面的元素則禁止window的滾動,若是不是,則window能夠滾動css
雖然在滑動彈窗的時候window體不滾動,可是當滑到彈窗邊緣的時候,window體依然滾動,後來小組長想出了一個辦法spa
即:在彈出彈窗的時候,設置window最外層定位爲fixed,這樣window便不會滾動了,在關閉彈窗的時候,設置window體定位爲static,window即可從新滾動。3d
代碼以下:code
HTML代碼:orm
<div class="demo">
<div class="btn">點擊彈出彈窗</div>
<p class="bottom-elem">底部元素</p>
</div>
<div class="dialog-wrap">
<div class="dialog">
<div class="close-btn">點擊關閉彈窗</div>
<p class="dialog-bottom">底部元素</p>
</div>
<div class="layer"></div>
</div>
CSS代碼:blog
.btn{ width: 180px; height: 40px; background: #ff6677; text-align: center; line-height: 40px;
} .bottom-elem{ margin-top: 1500px;
} .dialog-wrap{ display: none; position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: 99;
} .dialog{ position: absolute; top: 50%; left: 50%; width: 450px; height: 500px; background: #fff; transform: translate(-50%,-50%); z-index: 100; overflow: auto; font-size: 26px;
} .dialog-bottom{ margin-top: 500px;
} .layer{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.65); z-index: 99;
} .close-btn{ width: 150px; height: 50px; background: #e8db14; text-align: center; line-height: 50px; font-size: 20px;
}
JS代碼:it
$('.btn').on('tap',function(){ $('.dialog-wrap').css('display','block'); $('.demo').css('position','fixed'); }); $('.close-btn').on('tap',function(){ $('.dialog-wrap').css('display','none'); $('.demo').css('position','static'); });
效果如圖:io
如上所示,不管彈窗滑到頂部仍是底部,背景window窗體都不滑動。function
雖然解決了問題,可是這樣的寫法有點投機取巧,後續須要想一想更周全更高級的方法。form
by新手小白的記錄