Skip to content

Instantly share code, notes, and snippets.

@JakubBlaha
Created October 17, 2021 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JakubBlaha/f888278d8516fa00f7818ede13010a24 to your computer and use it in GitHub Desktop.
Save JakubBlaha/f888278d8516fa00f7818ede13010a24 to your computer and use it in GitHub Desktop.
Svelte Action | Delayed Class
export function delayedClass(node: HTMLElement, options: { class: string; delay: number }) {
setTimeout(() => node.classList.add(options.class), options.delay);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment