doz
doz copied to clipboard
animation in css
The component style does not support the short definition like:
<style>
.my-class {
animation: 1s blink ease infinite;
}
</style>
this works:
<style>
.my-class {
animation-name: blink;
animation-duration: 1s;
animation-timing-function: ease;
animation-iteration-count: infinite;
}
</style>