CSS Animation

CSS Animation tips
 avatar
messywebdev
plain_text
2 years ago
263 B
13
Indexable
Delay the start of the animation:

animation-delay: 2s;

Use a negative number to make it look like it started already:

animation-delay: -2s;

How many times animation runs:

animation-iteration-count: 3;

Runs infinitely:

animation-iteration-count: infinite;

Editor is loading...