/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Background color animation $(document).ready(function(){ $(".first a").hover(function() { $(this).animate({ backgroundColor: "#00aadd" }, 600); },function() { $(this).animate({ backgroundColor: "#303030" }, 400); });