0
使用CSS轉換,我想添加一個延遲0.5s懸停在類「激活」。 經過這些0.5s後,它應該改變「content-l1」類從顯示:無到顯示:塊鼠標懸停延遲,以顯示一個孩子div
我試過用這段代碼,但根本不工作。
.content-l1 {
transition: 0s display;
}
.activator:hover>.content-l1 {
display: block;
transition-delay: 0.5s;
}
<div class="activator">
<div class="content-l1"> // initially: display:none whatever content here
</div>
</div>
'display'不是[動畫](https://www.w3schools.com/cssref/css_animatable.asp)CSS屬性。考慮使用「不透明度」和/或「能見度」。 – Santi
[Transitions on the display:property]可能重複(http://stackoverflow.com/questions/3331353/transitions-on-the-display-property) – APAD1