doz icon indicating copy to clipboard operation
doz copied to clipboard

animation in css

Open fabioricali opened this issue 4 years ago • 0 comments

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>

fabioricali avatar May 06 '21 16:05 fabioricali