jQuery animate background color milliseconds
jQuery animate({background:’yellow’,1000},) will add background color Milliseconds animation effect.
jQuery animate background color milliseconds Example And Code
jQuery animate background color milliseconds Example with syntax
<script type="text/javascript"> $(document).ready(function(){ $("#animateButton").click(function(){ $("#demoDiv").animate({backgroundColor:'yellow'},1000); }); }); </script> |
Advertisements