我正在使用以下代碼嘗試將我的導航鏈接的字體顏色設置爲懸停/關閉懸停時的動畫效果。邊框底部顏色正確改變,但字體顏色不改變。它也拋出了我的當前菜單項CSS規則的不同顏色。希望的行爲是在懸停時字體顏色變爲藍色,然後恢復爲關閉懸停的白色,除非它是當前菜單項,應爲字體顏色黃色。我是這個新手,所以請原諒我缺乏風格。我已經包含了顏色支持的jQuery UI文件。任何幫助是極大的讚賞。完整的例子可以在這裏http://www.buenolisto.com/almajQuery字體顏色動畫懸停不起作用
看到JS
jQuery("li.social").hover(function(){
jQuery(this).find("img").stop(true, true).animate({'marginTop': "-=20px"}, 'fast');
}, function(){
jQuery(this).find("img").stop(true, true).animate({'marginTop': "+=20px"}, 'fast');
})
jQuery("li.reservas").hover(function(){
jQuery(this).find("img").stop(true, true).fadeOut({'marginTop': "-=30px"}, 'slow');
}, function(){
jQuery(this).find("img").stop(true, true).fadeIn({'marginTop': "+=30px"}, 'slow');
})
jQuery('ul.menu li a').hover(function() {
jQuery(this).stop(true, true).animate({'borderBottomColor': "#2E9ECE",'color': "#FEFEFE"}, 'slow');
}, function() {
jQuery(this).stop(true, true).animate({'borderBottomColor': "#FFDF85",'color': "#2E9ECE"}, 'fast');
})
在你的代碼無處你正在玩的字體顏色屬性 – 2012-06-15 12:40:38
請您可以嘗試隔離導致該問題的代碼,也許在[的jsfiddle(http://jsfiddle.net/)?你的問題中的一些jQuery事件與問題無關(例如'li.social'事件綁定是針對你的社交圖標而不是菜單的。 – andyb
@Somebodyisintrouble我認爲''color':「#2E9ECE 「'.animate()''會不同意你 – andyb