Skip to content

Instantly share code, notes, and snippets.

@csthompson
Last active August 22, 2021 02:26
Show Gist options
  • Save csthompson/189e97b266069839b2e97e14868c5dc0 to your computer and use it in GitHub Desktop.
Save csthompson/189e97b266069839b2e97e14868c5dc0 to your computer and use it in GitHub Desktop.
<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