当一屏时在safari浏览器下方有遮挡栏影响一屏的解决方法
function appHeight() {
const doc = document.documentElement;
doc.style.setProperty('--vh', (window.innerHeight * .01) + 'px');
}
window.addEventListener('resize', appHeight);
appHeight();
function appHeight() {
const doc = document.documentElement;
doc.style.setProperty('--vh', (window.innerHeight * .01) + 'px');
}
window.addEventListener('resize', appHeight);
appHeight();