Javascript examples for jQuery Method and Property:animate
animate() - Uses Queue Functionality
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ var div = $("div"); div.animate({left: '100px'}, "slow"); div.animate({left: '-100px'}, "slow"); div.animate({fontSize: '3em'}, "slow"); });//from w w w .j a va2s . c om }); </script> </head> <body> <button>Start Animation</button> <div style="background:#98bf21;height:100px;width:200px;position:absolute;">HELLO</div> </body> </html>