pennions / JESS

Stylesheet influenced by Pico CSS and Fluent UI from microsoft
https://pennions.github.io/JESS
MIT License
2 stars 0 forks source link

Subtle animations? #27

Open antonieIPR opened 1 year ago

antonieIPR commented 1 year ago

It might be interesting to have minimal animations added as utility classes. More specifically on touch devices it is great to have some feedback when you tap on a link, card or any other interactive element, for instance:

.someInteractiveElement{
   ...
   transition: all 0.25s;
}

.someInteractiveElement:active{
   transform: scale(0.95);
}

Cheers