Answers for "zoom image animation css"

CSS
5

css zoom

.zoom50 {
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}
Posted by: Guest on July-07-2021
1

zoom image on hover

.zoom:hover {
    transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
Posted by: Guest on August-25-2021
1

zoom level in css

.zoom {
  zoom: 150%;
}
Posted by: Guest on September-11-2020
0

how to use image zoom effect in css

.parent {
  width: 400px; 
  height: 300px;
}

.child {
  width: 100%;
  height: 100%;
  background-color: black; /* fallback color */
  background-image: url("images/city.jpg");
  background-position: center;
  background-size: cover;
}
Posted by: Guest on February-26-2021

Browse Popular Code Answers by Language