Team:KAIST-Korea/jihantest

From 2011.igem.org

(Difference between revisions)
Line 36: Line 36:
<p style="color:gray;font-size:15px">At W3Schools, you can study everything you need to learn, in an accessible and handy format.</p>
<p style="color:gray;font-size:15px">At W3Schools, you can study everything you need to learn, in an accessible and handy format.</p>
</div>
</div>
 +
 +
<p class="flip"><img src="http://images.sciencedaily.com/2009/04/090417195827.jpg" alt="Fat Dog" width="100" height="100"/></p>
 +
 +
////////
 +
 +
$(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>
 +
 +
 +
///////
 +
 +
 +
-
<p class="flip"><img src="http://images.sciencedaily.com/2009/04/090417195827.jpg" alt="Fat Dog" width="100" height="100"/></p>
 
</body>
</body>
</html>
</html>

Revision as of 14:08, 27 June 2011

Because time is valuable, we deliver quick and easy learning.

At W3Schools, you can study everything you need to learn, in an accessible and handy format.

Fat Dog

//////// $(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"); }); });

///////