JQUERY导航悬停
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQUERY导航悬停相关的知识,希望对你有一定的参考价值。
// Background color animation $(document).ready(function(){ $(".first a").hover(function() { $(this).animate({ backgroundColor: "#00aadd" }, 600); },function() { $(this).animate({ backgroundColor: "#303030" }, 400); });
以上是关于JQUERY导航悬停的主要内容,如果未能解决你的问题,请参考以下文章