Tada 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>Tada Animation</title> <style> .element{ width: 100px; height: 100px; background: #FF6F61; border-radius: 5px; margin: auto; margin-top: 100px; } .tada { animation-name: tada; animation-duration: 1s; animation-fill-mode: both;animation-iteration-count: infinite; } @keyframes tada { 0% { transform: scale3d(1, 1, 1); } 10%, 20% { transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg); } 30%, 50%, 70%, 90% { transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); } 40%, 60%, 80% { transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); } 100% { transform: scale3d(1, 1, 1); } } </style> </head> <body> <div class="element tada"></div> </body> </html>