Skip to content

Instantly share code, notes, and snippets.

@0x4248
Last active November 14, 2024 10:13
Show Gist options
  • Save 0x4248/785388f987d868587ba10d63730579c0 to your computer and use it in GitHub Desktop.
Save 0x4248/785388f987d868587ba10d63730579c0 to your computer and use it in GitHub Desktop.
Prevent seneca from showing slow animations which can slow down productivity
setInterval(() => {
document.querySelectorAll("*").forEach(el => {
el.style.animation = "none";
el.style.transition = "none";
el.style.opacity = 1; // just incase an element is hidden
});
}, 200);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment