這是我正在處理的頁面:http://dsa.dartmouth.edu/。幻燈片下面是四個面板,可以在懸停時更改顏色。背景顏色工作正常,但標題顏色在變成白色後從未回到其黑色。下面是控制這個的javascript - 我怎樣才能讓h2文本在轉出時變回黑色?除非你有jQuery UI太Jquery淡入淡出問題
$featured_control_item.hover(function(){
if (! $(this).hasClass('active-slide')){
$(this).find('.et_slide_hover').css({'display':'block','opacity':'0'}).stop(true,true).animate({ 'opacity' : '1' }, featured_controllers_opacity_speed);
$(this).find('.controller').find('h2').css({'color':'white'}).stop(true,true).animate({ 'color' : '#656464' }, featured_controllers_opacity_speed);
}}, function(){
$(this).find('.et_slide_hover').stop(true,true).animate({ 'opacity' : '0' }, featured_controllers_opacity_speed);
$(this).find('.controller').find('h2').stop(true,true).animate({ 'color' : '#656464' }, featured_controllers_opacity_speed);
});