├── .gitignore ├── LICENSE.txt ├── package.json ├── css ├── animation-timing.css ├── animation-timing.min.css ├── css-animation-timing.min.css └── css-animation-timing.css ├── src └── css-animation-timing.css └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # List of files for git to ignore 2 | 3 | .DS_Store 4 | .AppleDouble 5 | .LSOverride 6 | 7 | # Icon must end with two \r 8 | Icon 9 | 10 | 11 | # Thumbnails 12 | ._* 13 | 14 | # Files that might appear on external disk 15 | .Spotlight-V100 16 | .Trashes 17 | 18 | # Directories potentially created on remote AFP share 19 | .AppleDB 20 | .AppleDesktop 21 | Network Trash Folder 22 | Temporary Items 23 | .apdisk 24 | 25 | # Vim 26 | Session.vim 27 | 28 | # Node 29 | node_modules/* 30 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | ISC License (ISC) 2 | Copyright (c) 2018, Adam Morse 3 | 4 | Permission to use, copy, modify, and/or distribute this software for any 5 | purpose with or without fee is hereby granted, provided that the above 6 | copyright notice and this permission notice appear in all copies. 7 | 8 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 9 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 10 | FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 11 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 12 | LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 13 | OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 14 | PERFORMANCE OF THIS SOFTWARE. 15 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "css-animation-timing", 3 | "style": "animation-timing.css", 4 | "version": "1.0.8", 5 | "homepage": "http://github.com/mrmrs/css-animation-timing", 6 | "description": "Css module of single purpose classes for animation timing", 7 | "keywords": [ 8 | "css", 9 | "oocss", 10 | "animation-timing" 11 | ], 12 | "css-animation-timing": { 13 | "type": "git", 14 | "url": "http://github.com/mrmrs/css-animation-timing.git" 15 | }, 16 | "bugs": { 17 | "url": "https://github.com/mrmrs/css-animation-timing/issues", 18 | "email": "hi@mrmrs.cc" 19 | }, 20 | "author": { 21 | "name": "Adam Morse", 22 | "email": "hi@mrmrs.cc", 23 | "url": "http://mrmrs.cc" 24 | }, 25 | "contributors": [ 26 | { 27 | "name": "Adam Morse", 28 | "email": "hi@mrmrs.cc" 29 | } 30 | ], 31 | "license": "MIT", 32 | "devDependencies": { 33 | "tachyons-cli": "^1.3.0" 34 | }, 35 | "scripts": { 36 | "start": "tachyons src/css-animation-timing.css > css/css-animation-timing.css && tachyons src/css-animation-timing.css --minify > css/css-animation-timing.min.css && tachyons src/css-animation-timing.css --generate-docs --package=../../package.json > readme.md" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /css/animation-timing.css: -------------------------------------------------------------------------------- 1 | /* 2 | ANIMATION TIMING 3 | */ 4 | 5 | .a-ease { animation-timing-function: ease; } 6 | .a-easein { animation-timing-function: ease-in; } 7 | .a-easeout { animation-timing-function: ease-out; } 8 | .a-easeinout { animation-timing-function: ease-in-out; } 9 | .a-linear { animation-timing-function: linear; } 10 | .a-bezier { animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); } 11 | .a-start { animation-timing-function: step-start; } 12 | .a-stop { animation-timing-function: step-stop; } 13 | 14 | 15 | @media screen and (min-width: 48em) { 16 | .a-ease-ns { animation-timing-function: ease; } 17 | .a-easein-ns { animation-timing-function: ease-in; } 18 | .a-easeout-ns { animation-timing-function: ease-out; } 19 | .a-easeinout-ns { animation-timing-function: ease-in-out; } 20 | .a-linear-ns { animation-timing-function: linear; } 21 | .a-bezier-ns { animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); } 22 | .a-start-ns { animation-timing-function: step-start; } 23 | .a-stop-ns { animation-timing-function: step-stop; } 24 | } 25 | 26 | @media screen and (min-width:48em) and (max-width: 64em) { 27 | .a-ease-m { animation-timing-function: ease; } 28 | .a-easein-m { animation-timing-function: ease-in; } 29 | .a-easeout-m { animation-timing-function: ease-out; } 30 | .a-easeinout-m { animation-timing-function: ease-in-out; } 31 | .a-linear-m { animation-timing-function: linear; } 32 | .a-bezier-m { animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); } 33 | .a-start-m { animation-timing-function: step-start; } 34 | .a-stop-m { animation-timing-function: step-stop; } 35 | } 36 | 37 | @media screen and (min-width: 64em) { 38 | .a-ease-l { animation-timing-function: ease; } 39 | .a-easein-l { animation-timing-function: ease-in; } 40 | .a-easeout-l { animation-timing-function: ease-out; } 41 | .a-easeinout-l { animation-timing-function: ease-in-out; } 42 | .a-linear-l { animation-timing-function: linear; } 43 | .a-bezier-l { animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); } 44 | .a-start-l { animation-timing-function: step-start; } 45 | .a-stop-l { animation-timing-function: step-stop; } 46 | } 47 | 48 | -------------------------------------------------------------------------------- /css/animation-timing.min.css: -------------------------------------------------------------------------------- 1 | /* 2 | ANIMATION TIMING 3 | */ 4 | 5 | .a-ease { animation-timing-function: ease; } 6 | .a-easein { animation-timing-function: ease-in; } 7 | .a-easeout { animation-timing-function: ease-out; } 8 | .a-easeinout { animation-timing-function: ease-in-out; } 9 | .a-linear { animation-timing-function: linear; } 10 | .a-bezier { animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); } 11 | .a-start { animation-timing-function: step-start; } 12 | .a-stop { animation-timing-function: step-stop; } 13 | 14 | 15 | @media screen and (min-width: 48em) { 16 | .a-ease-ns { animation-timing-function: ease; } 17 | .a-easein-ns { animation-timing-function: ease-in; } 18 | .a-easeout-ns { animation-timing-function: ease-out; } 19 | .a-easeinout-ns { animation-timing-function: ease-in-out; } 20 | .a-linear-ns { animation-timing-function: linear; } 21 | .a-bezier-ns { animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); } 22 | .a-start-ns { animation-timing-function: step-start; } 23 | .a-stop-ns { animation-timing-function: step-stop; } 24 | } 25 | 26 | @media screen and (min-width:48em) and (max-width: 64em) { 27 | .a-ease-m { animation-timing-function: ease; } 28 | .a-easein-m { animation-timing-function: ease-in; } 29 | .a-easeout-m { animation-timing-function: ease-out; } 30 | .a-easeinout-m { animation-timing-function: ease-in-out; } 31 | .a-linear-m { animation-timing-function: linear; } 32 | .a-bezier-m { animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); } 33 | .a-start-m { animation-timing-function: step-start; } 34 | .a-stop-m { animation-timing-function: step-stop; } 35 | } 36 | 37 | @media screen and (min-width: 64em) { 38 | .a-ease-l { animation-timing-function: ease; } 39 | .a-easein-l { animation-timing-function: ease-in; } 40 | .a-easeout-l { animation-timing-function: ease-out; } 41 | .a-easeinout-l { animation-timing-function: ease-in-out; } 42 | .a-linear-l { animation-timing-function: linear; } 43 | .a-bezier-l { animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); } 44 | .a-start-l { animation-timing-function: step-start; } 45 | .a-stop-l { animation-timing-function: step-stop; } 46 | } 47 | 48 | -------------------------------------------------------------------------------- /src/css-animation-timing.css: -------------------------------------------------------------------------------- 1 | /* 2 | ANIMATION TIMING 3 | */ 4 | 5 | .a-ease { animation-timing-function: ease; } 6 | .a-easein { animation-timing-function: ease-in; } 7 | .a-easeout { animation-timing-function: ease-out; } 8 | .a-easeinout { animation-timing-function: ease-in-out; } 9 | .a-linear { animation-timing-function: linear; } 10 | .a-bezier { animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); } 11 | .a-start { animation-timing-function: step-start; } 12 | .a-stop { animation-timing-function: step-stop; } 13 | 14 | 15 | @media screen and (min-width: 48em) { 16 | .a-ease-ns { animation-timing-function: ease; } 17 | .a-easein-ns { animation-timing-function: ease-in; } 18 | .a-easeout-ns { animation-timing-function: ease-out; } 19 | .a-easeinout-ns { animation-timing-function: ease-in-out; } 20 | .a-linear-ns { animation-timing-function: linear; } 21 | .a-bezier-ns { animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); } 22 | .a-start-ns { animation-timing-function: step-start; } 23 | .a-stop-ns { animation-timing-function: step-stop; } 24 | } 25 | 26 | @media screen and (min-width:48em) and (max-width: 64em) { 27 | .a-ease-m { animation-timing-function: ease; } 28 | .a-easein-m { animation-timing-function: ease-in; } 29 | .a-easeout-m { animation-timing-function: ease-out; } 30 | .a-easeinout-m { animation-timing-function: ease-in-out; } 31 | .a-linear-m { animation-timing-function: linear; } 32 | .a-bezier-m { animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); } 33 | .a-start-m { animation-timing-function: step-start; } 34 | .a-stop-m { animation-timing-function: step-stop; } 35 | } 36 | 37 | @media screen and (min-width: 64em) { 38 | .a-ease-l { animation-timing-function: ease; } 39 | .a-easein-l { animation-timing-function: ease-in; } 40 | .a-easeout-l { animation-timing-function: ease-out; } 41 | .a-easeinout-l { animation-timing-function: ease-in-out; } 42 | .a-linear-l { animation-timing-function: linear; } 43 | .a-bezier-l { animation-timing-function: cubic-bezier(0.1, 0.1, 0.1, 0.1); } 44 | .a-start-l { animation-timing-function: step-start; } 45 | .a-stop-l { animation-timing-function: step-stop; } 46 | } 47 | 48 | -------------------------------------------------------------------------------- /css/css-animation-timing.min.css: -------------------------------------------------------------------------------- 1 | .a-ease{-webkit-animation-timing-function:ease;animation-timing-function:ease}.a-easein{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}.a-easeout{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}.a-easeinout{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}.a-linear{-webkit-animation-timing-function:linear;animation-timing-function:linear}.a-bezier{-webkit-animation-timing-function:cubic-bezier(.1,.1,.1,.1);animation-timing-function:cubic-bezier(.1,.1,.1,.1)}.a-start{-webkit-animation-timing-function:step-start;animation-timing-function:step-start}.a-stop{-webkit-animation-timing-function:step-stop;animation-timing-function:step-stop}@media screen and (min-width:48em){.a-ease-ns{-webkit-animation-timing-function:ease;animation-timing-function:ease}.a-easein-ns{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}.a-easeout-ns{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}.a-easeinout-ns{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}.a-linear-ns{-webkit-animation-timing-function:linear;animation-timing-function:linear}.a-bezier-ns{-webkit-animation-timing-function:cubic-bezier(.1,.1,.1,.1);animation-timing-function:cubic-bezier(.1,.1,.1,.1)}.a-start-ns{-webkit-animation-timing-function:step-start;animation-timing-function:step-start}.a-stop-ns{-webkit-animation-timing-function:step-stop;animation-timing-function:step-stop}}@media screen and (min-width:48em) and (max-width:64em){.a-ease-m{-webkit-animation-timing-function:ease;animation-timing-function:ease}.a-easein-m{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}.a-easeout-m{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}.a-easeinout-m{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}.a-linear-m{-webkit-animation-timing-function:linear;animation-timing-function:linear}.a-bezier-m{-webkit-animation-timing-function:cubic-bezier(.1,.1,.1,.1);animation-timing-function:cubic-bezier(.1,.1,.1,.1)}.a-start-m{-webkit-animation-timing-function:step-start;animation-timing-function:step-start}.a-stop-m{-webkit-animation-timing-function:step-stop;animation-timing-function:step-stop}}@media screen and (min-width:64em){.a-ease-l{-webkit-animation-timing-function:ease;animation-timing-function:ease}.a-easein-l{-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}.a-easeout-l{-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}.a-easeinout-l{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}.a-linear-l{-webkit-animation-timing-function:linear;animation-timing-function:linear}.a-bezier-l{-webkit-animation-timing-function:cubic-bezier(.1,.1,.1,.1);animation-timing-function:cubic-bezier(.1,.1,.1,.1)}.a-start-l{-webkit-animation-timing-function:step-start;animation-timing-function:step-start}.a-stop-l{-webkit-animation-timing-function:step-stop;animation-timing-function:step-stop}} 2 | 3 | -------------------------------------------------------------------------------- /css/css-animation-timing.css: -------------------------------------------------------------------------------- 1 | /* 2 | ANIMATION TIMING 3 | */ 4 | .a-ease { -webkit-animation-timing-function: ease; animation-timing-function: ease; } 5 | .a-easein { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 6 | .a-easeout { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 7 | .a-easeinout { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 8 | .a-linear { -webkit-animation-timing-function: linear; animation-timing-function: linear; } 9 | .a-bezier { -webkit-animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); } 10 | .a-start { -webkit-animation-timing-function: step-start; animation-timing-function: step-start; } 11 | .a-stop { -webkit-animation-timing-function: step-stop; animation-timing-function: step-stop; } 12 | @media screen and (min-width: 48em) { 13 | .a-ease-ns { -webkit-animation-timing-function: ease; animation-timing-function: ease; } 14 | .a-easein-ns { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 15 | .a-easeout-ns { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 16 | .a-easeinout-ns { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 17 | .a-linear-ns { -webkit-animation-timing-function: linear; animation-timing-function: linear; } 18 | .a-bezier-ns { -webkit-animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); } 19 | .a-start-ns { -webkit-animation-timing-function: step-start; animation-timing-function: step-start; } 20 | .a-stop-ns { -webkit-animation-timing-function: step-stop; animation-timing-function: step-stop; } 21 | } 22 | @media screen and (min-width:48em) and (max-width: 64em) { 23 | .a-ease-m { -webkit-animation-timing-function: ease; animation-timing-function: ease; } 24 | .a-easein-m { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 25 | .a-easeout-m { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 26 | .a-easeinout-m { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 27 | .a-linear-m { -webkit-animation-timing-function: linear; animation-timing-function: linear; } 28 | .a-bezier-m { -webkit-animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); } 29 | .a-start-m { -webkit-animation-timing-function: step-start; animation-timing-function: step-start; } 30 | .a-stop-m { -webkit-animation-timing-function: step-stop; animation-timing-function: step-stop; } 31 | } 32 | @media screen and (min-width: 64em) { 33 | .a-ease-l { -webkit-animation-timing-function: ease; animation-timing-function: ease; } 34 | .a-easein-l { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 35 | .a-easeout-l { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 36 | .a-easeinout-l { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 37 | .a-linear-l { -webkit-animation-timing-function: linear; animation-timing-function: linear; } 38 | .a-bezier-l { -webkit-animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); } 39 | .a-start-l { -webkit-animation-timing-function: step-start; animation-timing-function: step-start; } 40 | .a-stop-l { -webkit-animation-timing-function: step-stop; animation-timing-function: step-stop; } 41 | } 42 | 43 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # css-animation-timing 1.0.6 2 | 3 | Css module of single purpose classes for animation timing 4 | 5 | #### Stats 6 | 7 | 369 | 32 | 64 8 | ---|---|--- 9 | bytes | selectors | declarations 10 | 11 | ## Installation 12 | 13 | #### With [npm](https://npmjs.com) 14 | 15 | ``` 16 | npm install --save-dev css-animation-timing 17 | ``` 18 | 19 | Learn more about using css installed with npm: 20 | * https://webpack.github.io/docs/stylesheets.html 21 | * https://github.com/defunctzombie/npm-css 22 | 23 | #### With Git 24 | 25 | http: 26 | ``` 27 | git clone https://github.com/tachyons-css/css-animation-timing 28 | ``` 29 | 30 | ssh: 31 | ``` 32 | git clone git@github.com:tachyons-css/css-animation-timing.git 33 | ``` 34 | 35 | ## Usage 36 | 37 | #### Using with [Postcss](https://github.com/postcss/postcss) 38 | 39 | Import the css module 40 | 41 | ```css 42 | @import "css-animation-timing"; 43 | ``` 44 | 45 | Then process the css using the [`tachyons-cli`](https://github.com/tachyons-css/tachyons-cli) 46 | 47 | ```sh 48 | $ npm i -g tachyons-cli 49 | $ tachyons path/to/css-file.css > dist/t.css 50 | ``` 51 | 52 | #### Using the css 53 | 54 | ##### CDN 55 | 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: 56 | 57 | ``` 58 | 59 | ``` 60 | 61 | ##### Locally 62 | The built css is located in the `css` directory. It contains an unminified and minified version. 63 | You can either cut and paste that css or link to it directly in your html. 64 | 65 | ```html 66 | 67 | ``` 68 | 69 | #### Development 70 | 71 | The source css files can be found in the `src` directory. 72 | Running `$ npm start` will process the source css and place the built css in the `css` directory. 73 | 74 | ## The css 75 | 76 | ```css 77 | /* 78 | ANIMATION TIMING 79 | */ 80 | .a-ease { -webkit-animation-timing-function: ease; animation-timing-function: ease; } 81 | .a-easein { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 82 | .a-easeout { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 83 | .a-easeinout { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 84 | .a-linear { -webkit-animation-timing-function: linear; animation-timing-function: linear; } 85 | .a-bezier { -webkit-animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); } 86 | .a-start { -webkit-animation-timing-function: step-start; animation-timing-function: step-start; } 87 | .a-stop { -webkit-animation-timing-function: step-stop; animation-timing-function: step-stop; } 88 | @media screen and (min-width: 48em) { 89 | .a-ease-ns { -webkit-animation-timing-function: ease; animation-timing-function: ease; } 90 | .a-easein-ns { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 91 | .a-easeout-ns { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 92 | .a-easeinout-ns { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 93 | .a-linear-ns { -webkit-animation-timing-function: linear; animation-timing-function: linear; } 94 | .a-bezier-ns { -webkit-animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); } 95 | .a-start-ns { -webkit-animation-timing-function: step-start; animation-timing-function: step-start; } 96 | .a-stop-ns { -webkit-animation-timing-function: step-stop; animation-timing-function: step-stop; } 97 | } 98 | @media screen and (min-width:48em) and (max-width: 64em) { 99 | .a-ease-m { -webkit-animation-timing-function: ease; animation-timing-function: ease; } 100 | .a-easein-m { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 101 | .a-easeout-m { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 102 | .a-easeinout-m { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 103 | .a-linear-m { -webkit-animation-timing-function: linear; animation-timing-function: linear; } 104 | .a-bezier-m { -webkit-animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); } 105 | .a-start-m { -webkit-animation-timing-function: step-start; animation-timing-function: step-start; } 106 | .a-stop-m { -webkit-animation-timing-function: step-stop; animation-timing-function: step-stop; } 107 | } 108 | @media screen and (min-width: 64em) { 109 | .a-ease-l { -webkit-animation-timing-function: ease; animation-timing-function: ease; } 110 | .a-easein-l { -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 111 | .a-easeout-l { -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; } 112 | .a-easeinout-l { -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; } 113 | .a-linear-l { -webkit-animation-timing-function: linear; animation-timing-function: linear; } 114 | .a-bezier-l { -webkit-animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); animation-timing-function: cubic-bezier( .1, .1, .1, .1 ); } 115 | .a-start-l { -webkit-animation-timing-function: step-start; animation-timing-function: step-start; } 116 | .a-stop-l { -webkit-animation-timing-function: step-stop; animation-timing-function: step-stop; } 117 | } 118 | ``` 119 | 120 | ## Contributing 121 | 122 | 1. Fork it 123 | 2. Create your feature branch (`git checkout -b my-new-feature`) 124 | 3. Commit your changes (`git commit -am 'Add some feature'`) 125 | 4. Push to the branch (`git push origin my-new-feature`) 126 | 5. Create new Pull Request 127 | 128 | ## Authors 129 | 130 | * [mrmrs](http://mrmrs.io) 131 | * [johno](http://johnotander.com) 132 | 133 | ## License 134 | 135 | ISC 136 | 137 | --------------------------------------------------------------------------------