Created
October 17, 2021 16:26
-
-
Save JakubBlaha/f888278d8516fa00f7818ede13010a24 to your computer and use it in GitHub Desktop.
Svelte Action | Delayed Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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