css - Animating Flexbox with Media Queries? -
i'm trying create website using flexbox, , 1 of main features of site hide navigation bar, in case left panel in jsfiddle, when viewport between 480px , 1023px. works, animation jumpy , not clear happening.
right trying use transition in css3, doesn't seem animate @ all...
going this:
aside { -webkit-transition: 1s ease; width: 270px; }
to this:
aside { display: none; }
no transition happens between 2 states.
how can animate navigation disappearing , main growing fit screen?
you can not animate display in css of today.
you can chain animation on properties can animated. instance width , height of flexboxes.
Comments
Post a Comment