Files
css-examples/Writerside/topics/Animation.md
2024-06-16 01:16:39 +09:00

27 lines
325 B
Markdown

# Animation
* `animation`
* `animation-duration`
* `animation-name`
* `animation-iteration-count`
* `animation-direction`
```CSS
p {
animation-duration: 3s;
animation-name: slidein;
}
@keyframes slidein {
from {
translate: 150vw 0;
scale: 200% 1;
}
to {
translate: 0 0;
scale: 100% 1;
}
}
```