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