Thursday, January 5, 2017

JS30 Challenge Day 5 - Flexbox Gallery

Day 5


This was more of a CSS heavy project

It reminded me that we can use cubic-bezier in transition
transition:
    font-size 0.7s cubic-bezier(0.61,-0.19, 0.7,-0.11),
    flex 0.7s cubic-bezier(0.61,-0.19, 0.7,-0.11),

It reminded me that we can set flex-direction to column
flex-direction:column;

And finally, I learned the includes function:

e.propertyName.includes('flex')

No comments:

Post a Comment