我怎样才能过渡高度:0;高度:自动;使用CSS?
P粉461599845
2023-08-27 11:59:03
<p>我正在尝试使用 CSS 过渡使 <code></code></p><ul> 向下滑动。<p><br /></p>
<p><code></code></p><ul> 从 <code>height: 0;</code> 开始。悬停时,高度设置为 <code>height:auto;</code>。然而,这导致它只是出现,<em>而不</em>过渡,<p><br /></p>
<p>如果我从 <code>height: 40px;</code> 到 <code>height: auto;</code>,那么它会向上滑动到 <code>height: 0;</code>,然后突然跳到正确的高度。</p>
<p>如果不使用 JavaScript,我还能如何做到这一点?</p>
<p><br /></p>
<pre class="brush:css;toolbar:false;">#child0 {
height: 0;
overflow: hidden;
background-color: #dedede;
-moz-transition: height 1s ease;
-webkit-transition: height 1s ease;
-o-transition: height 1s ease;
transition: height 1s ease;
}
#parent0:hover #child0 {
height: auto;
}
#child40 {
height: 40px;
overflow: hidden;
background-color: #dedede;
-moz-transition: height 1s ease;
-webkit-transition: height 1s ease;
-o-transition: height 1s ease;
transition: height 1s ease;
}
#parent40:hover #child40 {
height: auto;
}
h1 {
font-weight: bold;
}</pre>
<pre class="brush:html;toolbar:false;">The only difference between the two snippets of CSS is one has height: 0, the other height: 40.
<hr>
<div id="parent0">
<h1>Hover me (height: 0)</h1>
<div id="child0">Some content
<br>Some content
<br>Some content
<br>Some content
<br>Some content
<br>Some content
<br>
</div>
</div>
<hr>
<div id="parent40">
<h1>Hover me (height: 40)</h1>
<div id="child40">Some content
<br>Some content
<br>Some content
<br>Some content
<br>Some content
<br>Some content
<br>
</div>
</div></pre>
<p><br /></p></ul></ul>
您应该使用scaleY。
我在 jsfiddle 上制作了上述代码的供应商前缀版本,并进行了更改你的jsfiddle使用scaleY而不是高度。
编辑 有些人不喜欢
scaleY
转换内容的方式。如果这是一个问题,那么我建议使用clip
代替。在过渡中使用
max-height
,而不是height
。并将max-height
的值设置为比您的盒子更大的值。请参阅 Chris Jordan 在另一个 JSFiddle 演示 /stackoverflow.com/a/20226830/18706">在这里回答。