huanggang 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
..
css 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
custom-icons 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
fonts 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
lib 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
scss 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
templates 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
.jshintrc 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
.npmignore 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
Gruntfile.js 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
LICENSE 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
README.md 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
icons.json 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
index.html 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos
package.json 03a863fb53 add node_modules %!s(int64=7) %!d(string=hai) anos

README.md

Video.js Icon Font

This project contains all of the tooling necessary to generate a new icon font for Video.js. The icons themselves are from Google's Material Design Icons.

Usage

$ npm install grunt-cli // only if you don't already have grunt installed
$ npm install
$ grunt

Making changes to the font

To make changes to the font, simply edit the icons.json file. You can add or remove icons, either by just selecting new SVGs from the Material Design set, or pulling in new SVGs altogether.

{
  "font-name": "VideoJS",
  "root-dir": "./node_modules/material-design-icons/",
  "icons": [
    {
      "name": "play",
      "svg": "av/svg/production/ic_play_arrow_48px.svg"
    },
    {
      "name": "pause",
      "svg": "av/svg/production/ic_pause_48px.svg"
    },
    {
      "name": "cool-custom-icon",
      "svg": "neato-icon.svg",
      "root-dir": "./custom-icons/neato-icon.svg"
    }
  ]
}

Once you're done, simply run grunt again to regenerate the fonts and scss partial. To edit the _icons.scss partial, update templates/scss.hbs.