Css module of single purpose classes for animation play state
200 | 8 | 16 |
---|---|---|
bytes | selectors | declarations |
With npm
npm install --save-dev css-animation-play-state
Learn more about using css installed with npm:
http:
git clone https://github.com/tachyons-css/css-animation-play-state
ssh:
git clone git@github.com:tachyons-css/css-animation-play-state.git
Using with Postcss
Import the css module
@import "css-animation-play-state";
Then process the css using the tachyons-cli
$ npm i -g tachyons-cli
$ tachyons path/to/css-file.css > dist/t.css
The easiest and most simple way to use the css is to use the cdn hosted version. Include it in the head of your html with:
<link rel="stylesheet" href="http://unpkg.com/css-animation-play-state@1.0.6/css/css-animation-play-state.min.css" />
The built css is located in the css
directory. It contains an unminified and minified version.
You can either cut and paste that css or link to it directly in your html.
<link rel="stylesheet" href="path/to/module/css/css-animation-play-state">
The source css files can be found in the src
directory.
Running $ npm start
will process the source css and place the built css in the css
directory.
/*
ANIMATION PLAY STATE
*/
.a-running { -webkit-animation-play-state: running; animation-play-state: running; }
.a-paused { -webkit-animation-play-state: paused; animation-play-state: paused; }
@media screen and (min-width: 48em) {
.a-running-ns { -webkit-animation-play-state: running; animation-play-state: running; }
.a-paused-ns { -webkit-animation-play-state: paused; animation-play-state: paused; }
}
@media screen and (min-width:48em) and (max-width: 64em) {
.a-running-m { -webkit-animation-play-state: running; animation-play-state: running; }
.a-paused-m { -webkit-animation-play-state: paused; animation-play-state: paused; }
}
@media screen and (min-width: 64em) {
.a-running-l { -webkit-animation-play-state: running; animation-play-state: running; }
.a-paused-l { -webkit-animation-play-state: paused; animation-play-state: paused; }
}
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
ISC