Set duration when hover over - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Hover

Description

Set duration when hover over

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials