Skip to content

Instantly share code, notes, and snippets.

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