Editor Arrow Download Open
<html> <head> <script src="jquery-latest.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#btn1").click(function(){ $("p").animate({textIndent:"50px"}); }); $("#btn2").click(function(){ $("p").animate({textIndent:"0px"}); }); }); </script> </head> <body> <button id="btn1">Animate Start</button> <button id="btn2">Animate Stop</button><br /> <p>This is Animate Effect. Natural resources (economically referred to as land or raw materials) occur naturally within environments that exist relatively thats undisturbed by mankind, in a natural form. A natural resource is often character by amounts of biodiversity existent in various ecosystems.</p> </body> </html>
  Preview Arrow