Zoom Out Down 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>Zoom Out Down Animation</title> <style> .element{ width: 100px; height: 100px; background: #FF6F61; border-radius: 50%; margin: auto; margin-top: 100px; } .zoomOutDown { animation-name: zoomOutDown; animation-duration: 1s; animation-fill-mode: both;animation-iteration-count: infinite; } @keyframes zoomOutDown { 40% { opacity: 1; transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0); animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190); } 100% { opacity: 0; transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0); transform-origin: center bottom; animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); } } </style> </head> <body> <div class="element zoomOutDown"></div> </body> </html>