I am using web animations api to animate a div to a specific height. I am using fill mode 'forwards' to preserve the height post animation. However, later on I would like to manually set the height through CSS back to 'auto', but by setting the fill mode to forwards it seems to prevent CSS's ability to affect the height property after the animation finishes, even if I set it on the element.
I cannot set the height back to auto immediately after the animation plays, so I was wondering if there was a way to override the properties set by fill 'forwards'?
Styles set by CSS Animations and the Web Animations API affect the animations level of the CSS cascade. There is a description of this in the combining effects section of the spec. As a result, if you set style in a stylesheet or style attribute, unless that style is
!important
, the animation style will override it.In your case, you have a couple of options:
cancel()
on the animation at the same time you update the style.