不会爬树的猴 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
..
css 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
custom-icons 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
fonts 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
lib 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
scss 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
templates 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
.babelrc 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
.jshintrc 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
.npmignore 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
Gruntfile.js 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
LICENSE 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
README.md 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
icons.json 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
index.html 42165dd463 1、增加无人机视频投射算法 1 жил өмнө
package.json 42165dd463 1、增加无人机视频投射算法 1 жил өмнө

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

Custom icons

You can add custom icons by calling grunt with the --custom-json option. It takes a comma delimited list of paths to JSON files of the same format as below and merges it with the default icons file.

Example:

$ grunt --custom-json=custom.json,custom2.json

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.