jQuery Animate
home
Run
screen_rotation
fullscreen
cloud_download
navigate_before
<!DOCTYPE html> <html> <head> <title>jQuery Animate Example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $("#animateButton").click(function(){ $("#demoDiv").animate({left:'100px',top:'100px',height:'200px',width:'200px'},1000); }); }); </script> </head> <body> <a href="javascript:void(0)" id="animateButton"> Click To Animate </a><br> <br> <p id="demoDiv" style="width:100px;height:100px;display:block;background:yellow;position:absolute;"> Animate Me.</p> </body> </html>
<!DOCTYPE html> <html> <head> <title>jQuery Animate Example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $("#animateButton").click(function(){ $("#demoDiv").animate({left:'100px',top:'100px',height:'200px',width:'200px'},1000); }); }); </script> </head> <body> <a href="javascript:void(0)" id="animateButton"> Click To Animate </a><br> <br> <p id="demoDiv" style="width:100px;height:100px;display:block;background:yellow;position:absolute;"> Animate Me.</p> </body> </html>
Copyrights@tutorialsplane.com