├── .babelrc ├── .gitignore ├── README.md ├── docs ├── dist │ └── grade.js ├── index.html └── samples │ ├── drive.jpg │ ├── finding-dory.jpg │ ├── good-dinosaur.jpg │ ├── inside-out.jpg │ ├── only-god-forgives.jpg │ ├── stanger-things.jpg │ ├── true-detective.jpg │ ├── up.jpg │ └── wall-e.jpg ├── package.json └── src └── index.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Grade 2 | 3 | [](https://www.npmjs.com/package/grade-js) 4 | 5 | ## Demo 6 | 7 | [Check it out](https://benhowdle89.github.io/grade/) 8 | 9 | ## Install 10 | 11 | Download this repo and grab the `grade.js` file from the `/docs/dist` folder. 12 | 13 | Or install from npm: `npm install grade-js` 14 | 15 | Use the CDN link: 16 | 17 | `https://unpkg.com/grade-js/docs/dist/grade.js` 18 | 19 | ## Usage 20 | 21 | Recommended HTML structure: 22 | 23 | ```html 24 | 25 |