$('a').hover(function(){
$(this).stop();
$(this).animate({
color: '#22373A'
}, 'slow');
}, function(){
$(this).stop();
$(this).animate({
color: '#fe57a1'
}, 'slow');
});
使用此功能可以在懸停時更改元素的不透明度,但似乎無法使用顏色更改。任何想法或建議?對鏈接顏色的淡入淡出效果
問候 dennym
http://api.jquery.com/animate/ *動畫屬性和值後的第1段* * ...但背景顏色不能,除非使用jQuery.Color()插件... * – Yoshi 2012-02-14 18:57:28
謝謝吉西這是有幫助的,最後切換到過渡,相當容易:) – 2012-02-14 19:08:56