Team:Hong Kong HKUST
From 2013.igem.org
(Difference between revisions)
(Blanked the page) |
|||
Line 1: | Line 1: | ||
+ | <html> | ||
+ | <head> | ||
+ | <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"> | ||
+ | </script> | ||
+ | <script> | ||
+ | $(document).ready(function() | ||
+ | { | ||
+ | $("#box").mouseover(function(){ | ||
+ | $("#box").animate({width:"100px"}); | ||
+ | }); | ||
+ | $("#box").mouseleave(function(){ | ||
+ | $("#box").animate({width:"300px"}); | ||
+ | }); | ||
+ | }); | ||
+ | </script> | ||
+ | </head> | ||
+ | <body> | ||
+ | <div id="box" style="background:#98bf21;height:100px;width:100px;margin:6px;"> | ||
+ | </div> | ||
+ | |||
+ | </body> | ||
+ | </html> |
Revision as of 05:20, 21 June 2013