0

高さをアニメーション化するこのコードがあります:

$(".color_list").each(function() {  
    oHeight = $(this).height();
    $('.show_color').toggle(function(){
        $(this).parent('.color_list').addClass('open').animate({height:oHeight},200);   
        $(this).delay(200).css({'bottom':5});
        return false;
    },function(){
            $(this).parent('.color_list').removeClass('open').animate({height:112},200);
            $(this).delay(200).css({'bottom':0});
            return false;
    });
    if ($(this).height() > 120) {
        $(this).css({'height':112});
        $(this).children('.show_color').css({'display':'block'});
    }

});

Firefox では機能しますが、Safari と Chrome では機能するだけです。「その他の色」をクリック

ここ

4

0 に答える 0