Heim >Web-Frontend >CSS-Tutorial >Wie animiere ich ein Div-Element mit jQuery auf automatische Höhe?
Beim Versuch, ein
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);
Das obige ist der detaillierte Inhalt vonWie animiere ich ein Div-Element mit jQuery auf automatische Höhe?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!