Javascript examples for jQuery Method and Property:animate
Animate letter spacing
<!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({letterSpacing: "+=10px"}); });//from w w w. ja v a 2 s .c om $(".btn2").click(function(){ $("p").animate({letterSpacing: "-=10px"}); }); }); </script> </head> <body> <button class="btn1">Animate +</button> <button class="btn2">Animate -</button> <p>This is a paragraph.</p> </body> </html>