0
Image animation when the mouse pointer is on the image
i want the image to be 50% bigger when thr mouse pointer enter the image.. and the size goes back to normal when the mouse pointer leave the image.. how?
2 odpowiedzi
+ 2
img:hover {
-ms-transform: scale(1.5, 1.5); /* IE 9 */
-webkit-transform: scale(1.5, 1.5); /* Safari */
transform: scale(1.5, 1.5);
}