Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
@keyframes bounce { 0% { transform: translateY(0); animation-timing-function: ease-out; } 50% { transform: translateY(-40px); animation-timing-function: ease-in; } 100% { transform: translateY(0); } } .bouncing { animation: bounce 0.6s infinite; }
Result
Open