使用color plugin爲懸停上的背景色創建動畫。jQuery在懸停時動畫邊框顏色?
$(function() {
$('.listing-2 li a').mouseover(function() {
$(this).animate({
backgroundColor: "#0e7796"
}, 'fast');
});
$('.listing-2 li a').mouseout(function() {
$(this).animate({
backgroundColor: "#d6f2c5"
}, 'fast');
});
});
我該怎麼做邊框顏色相同?
可能重複http://stackoverflow.com/questions/ 190560/jquery-animate-backgroundcolor) – mercator 2010-12-03 10:04:09
確保先加載jQueryUI的[color plugin](http://jqueryui.com/animate/) – bobobobo 2014-09-13 00:41:45