HTML CSS examples for CSS Widget:Hover
Set duration when hover over
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> img {<!--from ww w .j a va2 s. co m--> width:151px } img:hover { transform:scale(3,4); transition:transform 1501ms ease; } </style> </head> <body> <img src="https://www.java2s.com/style/demo/Opera.png"> </body> </html>