I need to animate height, and set overflow: hidden
for the first keyframe, and overflow: visible
(and keep it) for the last one.
I'm trying this, but at the end, overflow
is still hidden
.
How can I solve this issue?
The 2 includes are merely SCSS polifill mixins.
@include keyframes(open) {
0% {
height: 0;
overflow: hidden;
}
100% {
height: $main_menu_height;
overflow: visible;
}
}
#main-menu-box {
overflow: hidden;
height: 0;
&.opened{
@include animation('open 200ms ease-out 0s 1 normal forwards');
}
}
The solution is to use AnimationEvent listeners. Here's my raw implementation:
CSS
• 2 animations (open, close)
• 2 classes (opened, closed)
• 2 states (overflow hidden/visible)
opened and closed are always toggled at animationstart, while hidden/visible states are differently worked out on animationend.
Note: you'll see a #main-menu element: it's an UL with transitioned translations on y-axis, because the whole thing is a menu slide-down/up effect.
JS
• hamburger is a simple on/off button
• for now I had to use both jquery and vanilla selectors..
This works for me.