Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script> 
$(document).ready(function(){
  function aniDiv(){
    $("div:eq(0)").animate({width: "50%"}, "slow");
    $("div:eq(0)").animate({width: "100%"}, "slow", aniDiv);
  }
  aniDiv();
  $(".btn1").click(function(){
    $(":animated").css("background-color", "red");
  });
});
</script>
</head>
<body>
<button class="btn1">Change color of the animated element</button>
<div style="background:blue;">Div 1</div>
<div style="background:green;">Div 2</div>
<div style="background:yellow;">Div 3</div>
</body>
<!-- Mirrored from www.w3schools.com/jquery/tryit.asp?filename=tryjquery_sel_animated by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 18:06:16 GMT -->
</html>