Menu

gitpiper

Zoom in zoom out animation css Code Snippet in 2025

animationbeginner

Last Updated: 26 April 2025

Creates a zoom in zoom out animation.

  • Use @keyframes to define a three-step animation. At the start (0%) and end (100%), the element is its original size (scale(1 ,1)). Halfway through (50%) it's scaled up to 1.5 times its original size (scale(1.5, 1.5)).
  • Use width and height to give the element a specific size.
  • Use animation to set the appropriate values for the element to make it animated.
<div class="zoom-in-out-box"></div>
.zoom-in-out-box { margin: 24px; width: 50px; height: 50px; background: #f50057; animation: zoom-in-zoom-out 1s ease infinite; } @keyframes zoom-in-zoom-out { 0% { transform: scale(1, 1); } 50% { transform: scale(1.5, 1.5); } 100% { transform: scale(1, 1); } }

css snippet similar to Zoom in zoom out animation For You in April 2025

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2025 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️