aglobof / sass.animations

A glob of sass animation, transition and transform mixins.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sass.animations

A glob of sass animation mixins

Installation

via bower

$ bower install aglobof-sass.animations --save-dev

via npm

$ npm install aglobof-sass.animations --save-dev

Usage

Include a partial in your root sass file.

@import "bower_components/aglobof-sass.animations/animation";

Or, glob all the partials

@import "bower_components/aglobof-sass.animations/glob";

Animate

Call animations all over the place like a boss

@include keyframe(load-in-slow) {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.content {
  @include animation(load-in-slow, 1s, ease-in-out);
}

Transform

TBD

Translate

TBD

About

A glob of sass animation, transition and transform mixins.


Languages

Language:CSS 100.0%