Answers for "zoom image on hover css animation"

CSS
8

zoom image css

/*Zoom on hover*/

<style>
.zoom {
  padding: 50px;
  background-color: green;
  transition: transform .2s; /* Animation */
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.5); /* (150% zoom)*/
}
</style>

<div class="zoom"></div>

/*credits: w3schools.com */
Posted by: Guest on April-16-2020
0

how to use image zoom effect in css

.parent:hover .child,
.parent:focus .child {
  transform: scale(1.2);
}
Posted by: Guest on February-26-2021
0

css image hover zoom and rotate

img {
  transition: transform .7s ease-in-out;
}
img:hover {
  transform: rotate(360deg);
}
Posted by: Guest on October-22-2021

Code answers related to "zoom image on hover css animation"

Browse Popular Code Answers by Language