Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
/* animation: name duration timing-function delay iteration-count direction fill-mode */ .element { animation: fadeIn 0.5s ease-out 0.2s 1 normal forwards; } /* Multiple animations on one element */ .complex { animation: slideIn 0.4s ease both, pulse 2s ease-in-out 0.4s infinite; }
Result
Open