Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <title>Example</title> <style> .ball { width: 50px; height: 50px; background-color: tomato; border-radius: 50%; /* Using shorthand property */ animation: bounce 0.5s ease-in 1s infinite alternate; } @keyframes bounce { from { transform: translateY(0); } to { transform: translateY(150px); background-color: gold; } } </style> <div class="ball"></div>