Skip to content

Instantly share code, notes, and snippets.

@sergeh
Created October 29, 2019 18:15
Show Gist options
  • Save sergeh/f0c6009c3454aab0ae758dbad3b7e407 to your computer and use it in GitHub Desktop.
Save sergeh/f0c6009c3454aab0ae758dbad3b7e407 to your computer and use it in GitHub Desktop.
Stop animations on resize
let resizeTimer;
window.addEventListener("resize", () => {
document.body.classList.add("resize-animation-stopper");
clearTimeout(resizeTimer);
resizeTimer = setTimeout(() => {
document.body.classList.remove("resize-animation-stopper");
}, 400);
});
.resize-animation-stopper * {
transition: none !important;
animation: none !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment