DEV Community

Discussion on: Hide or show sidebar

Collapse
 
michelc profile image
Michel

Yes, that's what I plan to do. But I'll have to find a trick because "display" doesn't work with CSS animation.

Collapse
 
danielatwood profile image
Daniel Atwood

I usually do this
@keyframes {
0%{...display: block}
99%{...display: block}
100%{...display: none}

}