当一屏时在safari浏览器下方有遮挡栏影响一屏的解决方法

function appHeight() {
  const doc = document.documentElement;
  doc.style.setProperty('--vh', (window.innerHeight * .01) + 'px');
}

window.addEventListener('resize', appHeight);
appHeight();

  

posted @ 2023-08-04 09:50  F-Yi  阅读(699)  评论(0)    收藏  举报