Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> <script> $(document).ready(function(){ var div = $("div"); $("#start").click(function(){ div.animate({height: 300}, "slow"); div.animate({width: 300}, "slow"); div.animate({height: 100}, "slow"); div.animate({width: 100}, "slow"); }); $("#stop").click(function(){ div.stop(true, true); }); }); </script> </head> <body> <p> <button id="start">Start Animation</button> <button id="stop">Stop But Complete All Animations Immediately</button> </p> <div style="background:#98bf21;height:100px;width:100px"></div> </body> </html>