Skip to content

Commit

Permalink
Update readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
KingScooty committed May 29, 2015
1 parent 9105f90 commit 70093f2
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions README.md
@@ -1,18 +1,31 @@
Sass Easing Variables
Awesome Sass Easing Variables
===========

# sass-easing
Some useful variables for easing animations using SASS.
I'll add to this file whenever i come across a cool easing pattern.

##Installation
## Install

`bower install sass-easing`
```bash
$ npm install awesome-sass-easing --save
```

##Usage
or

Best to use alongside compass or bourbon (or an autoprefixer). An example useage can be seen as follows:
```
$ bower install sass-easing --save
```

`@include transition(top 500ms $easeInCubic);`
## Usage

```SCSS
@import "../node_modules/awesome-sass-easing/_easings.scss";

.element {
transition(top 500ms $easeInCubic);
}
```

##Easing Functions

Expand Down Expand Up @@ -50,4 +63,8 @@ The following easing functions are available:
- easeOutBack
- easeInOutBack

- easeInOutFast
- easeInOutFast

## License

MIT

0 comments on commit 70093f2

Please sign in to comment.