ホームページ >ウェブフロントエンド >CSSチュートリアル >jQueryを使用してDiv要素をアニメーション化して高さを自動調整する方法?
var curHeight = $('#first').height();
$('#first').css('height', 'auto');
var autoHeight = $('#first').height();
$('#first').height(curHeight).animate({height: autoHeight}, 1000);
var el = $('#first'), curHeight = el.height(), autoHeight = el.css('height', 'auto').height(); el.height(curHeight).animate({height: autoHeight}, 1000);
以上がjQueryを使用してDiv要素をアニメーション化して高さを自動調整する方法?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。