/ Published in: jQuery
Expand |
Embed | Plain Text
// Background color animation $(document).ready(function(){ $(".first a").hover(function() { $(this).animate({ backgroundColor: "#00aadd" }, 600); },function() { $(this).animate({ backgroundColor: "#303030" }, 400); });
You need to login to post a comment.
