我正在嘗試對元素的高度屬性進行動畫製作,並且出於某種原因,它根本沒有動畫效果。css變換高度不起作用
Here's the fiddle where I'm trying to animate.
HTML
<ul>
<li>
li 1
</li>
<li>
li 2
</li>
<li>
li 3
</li>
</ul>
的CSS
ul.hide {
height: 0px;
overflow: hidden;
}
ul {
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
JS:
setTimeout(function() { $('ul').addClass('hide'); }, 2000);
setTimeout(function() { $('ul').removeClass('hide'); }, 4000);
有什麼我丟失或忘記了?
你正在添加'display:none' – jeremy
@Nile你是什麼意思? – qwertymk
你想做什麼?你是否試圖讓UL慢慢失去高度? – jeremy