Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 696 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 696 Bytes

Sass Easing Transitions

A simple sass file providing standard easing functions for css transitions. It is based on compass-ceaser-easing extension but without the compass dependency. This make it compatible with libsass.

Example

@import "sass-easing/stylesheets/sass-easing";
.transition {
  transition: all 4.2s $easeInOutQuart;
}

Notes

Since it doesn't rely on compass you will have to handle vendor prefixes with autoprefixer for example.