Javascript examples for jQuery Method and Property:animate
Animate top
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(".btn1").click(function(){ $("p").animate({top: "100px"}); });// ww w . ja v a2s . c om $(".btn2").click(function(){ $("p").animate({top: "0px"}); }); }); </script> </head> <body> <button class="btn1">Animate</button> <button class="btn2">Reset</button> <p style="position:relative">This is a paragraph.</p> </body> </html>