10 lines
377 B
JavaScript
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);
|
|
});
|