You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe it would be a good idea to add start and end keyframe selectors that would represent the animationstart and animationend events. That would enable code like this:
@keyframes fadeOut {
to { opacity:0 }
end { display: none }
}
It seems that, currently, authors have to apply display: none via JavaScript.