Answers for "how to make zoom image animation in css"

CSS
4

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
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

Browse Popular Code Answers by Language