madebysource / lesshat

Smart LESS CSS mixins library.
lesshat.com
MIT License
2.19k stars 259 forks source link

Add common animation shortcut #133

Open elia-anc opened 9 years ago

elia-anc commented 9 years ago

Add a set of standard common animation, like all the jQuery effects: fadeIn, fadeOut, slideIn, ... It's possible by using keyframes feature like:

@keyframes fadeOut { 0% { opacity: 1; display: block; } 100% { opacity: 0; display: none; } }