DEV Community

Discussion on: Hide or show sidebar

Collapse
 
danielatwood profile image
Daniel Atwood

You could even animate it using transition and transform. Animating width is fairly expensive.

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}

}