stop using visualviewport, because it made things worse
This commit is contained in:
parent
2f66692255
commit
254bec0a48
1 changed files with 6 additions and 15 deletions
|
@ -9,21 +9,12 @@ function initViewportSizeHandler() {
|
|||
root.style.setProperty("--viewportWidth", "100dvw");
|
||||
root.style.setProperty("--viewportHeight", "100dvh");
|
||||
} else if (method === "javascriptResponsive") {
|
||||
if (window.visualViewport) {
|
||||
const updateUnits = () => {
|
||||
root.style.setProperty("--viewportWidth", `${window.visualViewport.width}px`);
|
||||
root.style.setProperty("--viewportHeight", `${window.visualViewport.height}px`);
|
||||
};
|
||||
window.visualViewport.addEventListener("resize", updateUnits);
|
||||
updateUnits();
|
||||
} else {
|
||||
const updateUnits = () => {
|
||||
root.style.setProperty("--viewportWidth", `${window.innerWidth}px`);
|
||||
root.style.setProperty("--viewportHeight", `${window.innerHeight}px`);
|
||||
};
|
||||
window.addEventListener("resize", updateUnits);
|
||||
updateUnits();
|
||||
}
|
||||
} else if (method === "normalUnits") {
|
||||
root.style.setProperty("--viewportWidth", "100vw");
|
||||
root.style.setProperty("--viewportHeight", "100vh");
|
||||
|
|
Loading…
Reference in a new issue