User:Anita Nguyen

From OpenWetWare
Revision as of 08:19, 7 September 2010 by Anita Nguyen (talk | contribs)
Jump to navigationJump to search

Contact Info

Education

Useful links

<html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){

 $("button").click(function(){
   $("div").animate({height:300},"slow");
   $("div").animate({width:300},"slow");
   $("div").animate({height:100},"slow");
   $("div").animate({width:100},"slow");
 });

}); </script> </head>

<body> <button>Start Animation</button> <br /><br /> <div style="background:#98bf21;height:100px;width:100px;position:relative"> </div> </body> </html>