Answers for "animation zoom in css"

CSS
0

How to zoom picture on hover using css

.img:hover{
transform:scale(1.0);
}
Posted by: Guest on January-25-2022
0

equivalent zoom css

-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 June-14-2020

Browse Popular Code Answers by Language