Rubber Band Animation - MeggiTools
Run
Toggle Theme
Share Link
🛒 Buy Complete Code
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Rubber Band Animation</title> <style> .element{ width: 100px; height: 100px; background: #FF6F61; border-radius: 5px; margin: auto; margin-top: 100px; } .rubberBand { animation-name: rubberBand; animation-duration: 1s; animation-fill-mode: both; animation-iteration-count: infinite; } @keyframes rubberBand { 0% { transform: scale3d(1, 1, 1); } 30% { transform: scale3d(1.25, 0.75, 1); } 40% { transform: scale3d(0.75, 1.25, 1); } 50% { transform: scale3d(1.15, 0.85, 1); } 65% { transform: scale3d(.95, 1.05, 1); } 75% { transform: scale3d(1.05, .95, 1); } 100% { transform: scale3d(1, 1, 1); } } </style> </head> <body> <div class="element rubberBand"></div> </body> </html>