私は div をアニメーション化しようとしています。それを「ミニファイ」width
するときに設定しています。アニメーションを切り替えるときに650px
ネイティブに戻したいです。ご覧のwidth
とおり、コンテナの があり、セットのみです。ここに私のコードがあります:animated_div
width
min-width
HTML
<div id="container>
<div class="animated_div>
...
<p>really a lot of text here</p>
...
</div>
</div>
CSS
.animated_div{
padding:20px;
min-width:650px;
margin:0 auto;
margin-bottom:15px;
margin-top:10px;
}
Jクエリ
$("#toggle_click").on('click', function() {
$("#animated_div").animate({
width : "650px"
})
$("#toggle_click2").on('click', function() {
$("#animated_div").animate({
width : "100%" // Here it is the problem , It set the div to be over-widthed.
})
コメントに書いたように、問題は100%
、div を設定すると、コンテナーよりも幅が広くなることです。