Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

li{
    .subnav{
        display: flex;
        flex-direction: column;
        transition:height 2s;//这个高度什么不生效
        padding: 10px 0;
        height: 0;
        overflow: hidden;
    }
}

#navmenu li:hover .subnav{
    height: auto;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

因为heigth:auto 不是具体值,无法触发过渡。
transition 必须满足是具体值,比如 opacity:0->opacity:1
可以将height:automax-height:xxx代替


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...