Back to Tutorial Paste Your Code here! <!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("div").animate({ left: '350px', opacity: '0.5', height: '250px', width: '250px' }); }); }); </script> </head> <body> <button>Start Animation</button> <h2>jQuery animate() - Manipulate Multiple Properties</h2> <div style="background:blue;height:100px;width:100px;position:absolute;"></div> </body> </html> Output