当高度为100%时,控制Webkit关键帧的高度

时间:2019-07-12 15:26:19

标签: javascript html css

我在下面有一个webkit css来设置我的顶部菜单的动画。我只想通过js控制height属性(height:150px),当其100%表示打开时为max-height。

 from {
    height:var(--m,0%);
}

这是我的CSS

@-webkit-keyframes expand{
    0%{height:0px}
    100%{height:150px}
}

1 个答案:

答案 0 :(得分:-1)

您可以使用事件animationendhttps://www.w3schools.com/jsref/event_animationend.asp

    document.getElementById('yourselector').addEventListener('animationend', e=>console.log('animation ended'),false)