In this guide we will cover two main cases:
- Ember specific library
- vendor library
The Ember library will assume that Ember has already ben loaded (higher in the loading order) and thus will assume it has access to the Ember API.
| $prefix:'-moz-', '-webkit-', '-o-', '-ms-', ''; | |
| // ******************** | |
| // fadeIn | |
| // ******************** | |
| @mixin keyframe-fadeIn { | |
| 0% { opacity:0; } | |
| 100% { opacity:1; } | |
| } | |
| @-moz-keyframes fadeIn { | |
| @include keyframe-fadeIn; |