Javascript examples for jQuery:Animation
Change the height of <div> to 500 pixels with animation
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("div").animate({height: '500px'}); });//from ww w. ja va 2s. c o m </script> </head> <body> <div style="background:#98bf21;height:100px;width:100px;position:absolute;"></div> </body> </html>