jQuery animate background color fast


jQuery animate({background:’yellow’},”fast”) will add background color fast animation effect.


jQuery animate background color fast Example And Code

jQuery animate background color fast Example


<script type="text/javascript">
         $(document).ready(function(){
          $("#animateButton").click(function(){
           $("#demoDiv").animate({backgroundColor:'yellow'},"fast");
          });
          });
</script>    

Try it »


Advertisements

Add Comment

📖 Read More