前端html

文章

ios微信H5安全区

时间:2024-12-17 11:01 阅读:402
<meta name="viewport" content="width=device-width, initial-scale=1.0,minimum-scale=1.0, maximum-scale=1.0, user-scalable=no,viewport-fit=cover">
.safeArea{
padding-bottom: env(safe-area-inset-bottom);
padding-bottom: constant(safe-area-inset-bottom);
}
//监听页面是不是返回的,返回的页面隐藏padding-bottom,仅ios有效
var originHeight = null;
$(function(){
    originHeight = $(window).height()
});
window.addEventListener('pageshow', function (e) {
    var currentHeight = $(window).height()
    if(currentHeight != originHeight){
        $('body').removeClass('safeArea')
    }    
})


Copyright © 2024  Erbing 版权所有  备案号:黑ICP备17006126号-3

1.017351s