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 Answers
+ 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);
}