Last active
August 22, 2021 02:26
-
-
Save csthompson/189e97b266069839b2e97e14868c5dc0 to your computer and use it in GitHub Desktop.
This file contains 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
<script> | |
import {onMount} from 'svelte' | |
let name = 'world'; | |
let foo; | |
let cssClass = "test" | |
onMount(()=>{ | |
foo.addEventListener('click', function(){ | |
cssClass = "animate" | |
}) | |
}) | |
</script> | |
<h1 bind:this={foo} class={cssClass}>Hello {name}!</h1> | |
<style> | |
.test{ | |
font-size: small; | |
} | |
.animate{ | |
font-size: large; | |
transition: font-size .3s; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment