import/order
is an eslint plugin that organises your imports.- It’s configurable via the
groups array
- It’s configurable via the
- Got a neat on hover animation effect working with css - https://codepen.io/chiubaca/pen/gOGzEve?editors=0100
- reversed engineered the ‘Shutter Out Vertical’ effect from Hover.css.
- This exercise surprisingly stretched my css skills more than i though. at a high level I had to absolute position the
::before
pseudo element, this gives you a freediv
element to play with to create a shutter effect by transitioning thetransform:translateY(0)
totransform:translateY(0)
. - When we apply the
transition: all 1s
to both the hover state and regular state the animation transition both on hover and out. thanks css tricks! - https://css-tricks.com/different-transitions-for-hover-on-hover-off/