notes/defaults.js
2023-11-10 23:39:29 -08:00

10 lines
377 B
JavaScript

/* Stop Animations During Window Resizing Trick
* https://css-tricks.com/stop-animations-during-window-resizing/*/
let resizeTimer;
window.addEventListener("resize", () => {
document.body.classList.add("resize-animation-stopper");
clearTimeout(resizeTimer);
resizeTimer = setTimeout(() => {
document.body.classList.remove("resize-animation-stopper");
}, 400);
});