jQuery を使用して、内容を変形させずに div をアニメーション化する方法はありますか?
私の例を話しましょう:
私の resizedivs 関数では:
function resizedivs() {
$("#div_3B").animate({
"width": "0"
}, 700, function () {
$("#div_3A").animate({
"width": "20%"
}, 700, function () {
$("#div_3B").animate({
"width": "80%"
}, 700);
});
});
}
div_3B の文字列は、ワードラップのように改行せずに、独自の行にとどめたいと思います。
前もって感謝します。