├── docs ├── CNAME ├── icons │ ├── play.svg │ ├── pause.svg │ ├── web-fullscreen.svg │ ├── volume-ok.svg │ ├── fullscreen.svg │ ├── volume-x.svg │ ├── later.svg │ ├── emoj.svg │ ├── danmu-ok.svg │ ├── danmu-op.svg │ └── danmu-x.svg ├── game.html ├── index.html ├── danmaku.js ├── mug.js └── eplayer.js ├── .gitignore ├── package.json └── README.md /docs/CNAME: -------------------------------------------------------------------------------- 1 | eplayer.js.org -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .vscode/ 3 | .idea/ 4 | npm-debug.log 5 | yarn-error.log 6 | package-lock.json 7 | yarn.lock 8 | .DS_Store 9 | .cache/ -------------------------------------------------------------------------------- /docs/icons/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/icons/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/icons/web-fullscreen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/icons/volume-ok.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/icons/fullscreen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/icons/volume-x.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/game.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/icons/later.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eplayer", 3 | "version": "1.6.11", 4 | "description": "A web-components html5 video player facing future", 5 | "main": "./docs/eplayer.js", 6 | "module": "./docs/eplayer.js", 7 | "unpkg": "./docs/eplayer.js", 8 | "scripts": { 9 | "test": "echo \"Error: no test specified\" && exit 1", 10 | "build": "rollup -c", 11 | "start": "serve docs" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/132yse/eplayer.git" 16 | }, 17 | "keywords": [], 18 | "author": "", 19 | "license": "ISC", 20 | "bugs": { 21 | "url": "https://github.com/132yse/eplayer/issues" 22 | }, 23 | "homepage": "https://github.com/132yse/eplayer#readme", 24 | "dependencies": { 25 | "pixi-filters": "^6.0.4", 26 | "pixi.js": "^8.1.8", 27 | "serve": "^14.2.3" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /docs/icons/emoj.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/icons/danmu-ok.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/icons/danmu-op.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/icons/danmu-x.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |