ここに私が取り組んでいるページがあります: http://dsa.dartmouth.edu/ . スライドショーの下には、カーソルを合わせると色が変わる 4 つのパネルがあります。背景色は正常に機能しますが、タイトルの色が白くなった後、暗い色に戻ることはありません。以下は、これを制御する JavaScript です。ロールアウト時に h2 テキストを暗い色に戻すにはどうすればよいですか?
$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 );
} );