├── .gitignore ├── CONTRIBUTING.md ├── FAQ.zh.md ├── LICENSE.md ├── README.md ├── TF └── Bullet_Chatting_TF_Draft.md ├── USE-CASES ├── bullet chatting rendering for live streaming.md ├── bullet chatting rendering for non-video.md ├── bullet chatting rendering for on-demand videos.md └── logical architecture for bullet chatting.md ├── api.html ├── api.zh.html ├── demos ├── bulletchatting-proposal-demo │ ├── .gitignore │ ├── README.md │ ├── dist │ │ ├── bundles │ │ │ ├── webcomponents-ce.js │ │ │ ├── webcomponents-sd-ce-pf.js │ │ │ ├── webcomponents-sd-ce.js │ │ │ └── webcomponents-sd.js │ │ ├── polymer-bulletchatting.js │ │ ├── polymer-bulletchatting.js.map │ │ ├── polymer-danmaku.js │ │ ├── polymer-danmaku.js.map │ │ └── webcomponents-loader.js │ ├── index.html │ ├── index.js │ ├── package.json │ ├── src │ │ ├── bullet-chatting-list.js │ │ ├── bullet-chatting.js │ │ └── index.js │ ├── webpack │ │ ├── dev.config.js │ │ └── prod.config.js │ └── yarn.lock ├── no-media │ ├── README.md │ ├── assets │ │ ├── index_sprites.png │ │ └── police.png │ ├── index.html │ └── source │ │ ├── 201801121125_CoverFile_XxjflbC038060_20180111_HGVFN0_HSJ720H.jpg │ │ ├── 201802041701_7_H169_720.jpg │ │ ├── 201805051744_1_H169_720.jpg │ │ ├── 201805061038_05_H169_720.jpg │ │ ├── 201806161010_GZTV_1500000_20180615_28757712_0_384_H169_720.jpg │ │ ├── 201808101815_WuXiInfo_1500000_20180810_29311670_0_326_H169_720.jpg │ │ ├── 201901152235_JiangSuPublic_1500000_20190115_30968727_0_326_H169_720.jpg │ │ ├── 201901161744_201901161609363899158_H169_720.jpg │ │ ├── 201901172244_JiangSuPublic_1500000_20190117_30989482_0_326_H169_720.jpg │ │ ├── 201901181635_2019011815234056209_H169_720.jpg │ │ ├── 201901311824_ZheJiangFilmHD_2500000_20190131_31119212_0_326_H169_720.jpg │ │ ├── 201901312113_31xw0131ztkx34_H169_720.jpg │ │ ├── 201904291231_ZheJiangPublicHD_2500000_20190429_31909707_0_326_H169_720.jpg │ │ ├── 201905051137_a04ce07f5841fbb7f2d553b7c14a4edb_H169_720.jpg │ │ ├── 201905132033_XinHuaNews_1500000_20190513_32045216_0_384_H169_720.jpg │ │ ├── 201905140712_DongNanHD_3000000_20190514_32048232_0_326_H169_720.jpg │ │ ├── 201905251825_XinHuaNews_1500000_20190525_32161395_0_384_H169_720.jpg │ │ ├── 201905281830_TVSFinance_1500000_20190528_32189127_0_384_H169_720.jpg │ │ ├── 201906021221_XinHuaNews_1500000_20190602_32237891_0_384_H169_720.jpg │ │ ├── 201906042227_fb7ec1f68f3f48c999acaa1af8c2a490_H169_720.jpg │ │ ├── 201906060900_1_H169_720.jpg │ │ ├── 201906132149_Shan1XiTV_1500000_20190613_32355252_0_384_H169_720.jpg │ │ ├── 201906231456_20190623145439862367_H169_720.jpg │ │ ├── 201906231525_1_H169_720.jpg │ │ ├── barrageWall.js │ │ ├── commonPlayer.js │ │ ├── common_mgvendor.js │ │ ├── index.js │ │ ├── jquery.min.js │ │ ├── migusdk.js │ │ ├── style-index.css │ │ ├── vue_mgvendor.js │ │ └── wall.css └── simple-demo │ ├── css │ └── app.08c2d989.css │ ├── danmaku.vdt │ ├── favicon.ico │ ├── index.html │ └── js │ ├── app.276c9d29.js │ ├── app.276c9d29.js.map │ ├── chunk-vendors.4a7e2669.js │ └── chunk-vendors.4a7e2669.js.map ├── images ├── architecture │ └── global.png ├── bulletchat-Anti-block.png ├── bulletchat-Anti-block01.png ├── bulletchat-fig.png ├── bulletchat-fig01.png ├── bulletchat-wall.png ├── bulletchat-wall01.jpeg ├── content-no-bulletchat.png ├── content-no-bulletchat01.png ├── content.png ├── content01.png ├── danmaku.png ├── sample1.png ├── sample2.png ├── sample3.png ├── sample4.png ├── sample5.png ├── sample6.png ├── sample7.png ├── sample8.png ├── video-highlights.jpeg ├── video-live.png ├── video-live01.jpeg ├── video-on-demand.png ├── video-on-demand01.png ├── web_bulletchat.png ├── web_bulletchat01.png ├── why1.png ├── why2.png ├── why3.png ├── why4.png ├── why5.png ├── why6.png ├── why7.png └── why8.png ├── index.html ├── index.zh.html ├── index_en.html ├── local.css ├── meeting.zh.md ├── usecase.html ├── usecase.zh.html └── w3c.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FAQ.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/FAQ.zh.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/README.md -------------------------------------------------------------------------------- /TF/Bullet_Chatting_TF_Draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/TF/Bullet_Chatting_TF_Draft.md -------------------------------------------------------------------------------- /USE-CASES/bullet chatting rendering for live streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/USE-CASES/bullet chatting rendering for live streaming.md -------------------------------------------------------------------------------- /USE-CASES/bullet chatting rendering for non-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/USE-CASES/bullet chatting rendering for non-video.md -------------------------------------------------------------------------------- /USE-CASES/bullet chatting rendering for on-demand videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/USE-CASES/bullet chatting rendering for on-demand videos.md -------------------------------------------------------------------------------- /USE-CASES/logical architecture for bullet chatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/USE-CASES/logical architecture for bullet chatting.md -------------------------------------------------------------------------------- /api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/api.html -------------------------------------------------------------------------------- /api.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/api.zh.html -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/README.md -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/dist/bundles/webcomponents-ce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/dist/bundles/webcomponents-ce.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/dist/bundles/webcomponents-sd-ce-pf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/dist/bundles/webcomponents-sd-ce-pf.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/dist/bundles/webcomponents-sd-ce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/dist/bundles/webcomponents-sd-ce.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/dist/bundles/webcomponents-sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/dist/bundles/webcomponents-sd.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/dist/polymer-bulletchatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/dist/polymer-bulletchatting.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/dist/polymer-bulletchatting.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/dist/polymer-bulletchatting.js.map -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/dist/polymer-danmaku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/dist/polymer-danmaku.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/dist/polymer-danmaku.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/dist/polymer-danmaku.js.map -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/dist/webcomponents-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/dist/webcomponents-loader.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/index.html -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/index.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/package.json -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/src/bullet-chatting-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/src/bullet-chatting-list.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/src/bullet-chatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/src/bullet-chatting.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/src/index.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/webpack/dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/webpack/dev.config.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/webpack/prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/webpack/prod.config.js -------------------------------------------------------------------------------- /demos/bulletchatting-proposal-demo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/bulletchatting-proposal-demo/yarn.lock -------------------------------------------------------------------------------- /demos/no-media/README.md: -------------------------------------------------------------------------------- 1 | # Web页面互动demo -------------------------------------------------------------------------------- /demos/no-media/assets/index_sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/assets/index_sprites.png -------------------------------------------------------------------------------- /demos/no-media/assets/police.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/assets/police.png -------------------------------------------------------------------------------- /demos/no-media/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/index.html -------------------------------------------------------------------------------- /demos/no-media/source/201801121125_CoverFile_XxjflbC038060_20180111_HGVFN0_HSJ720H.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201801121125_CoverFile_XxjflbC038060_20180111_HGVFN0_HSJ720H.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201802041701_7_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201802041701_7_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201805051744_1_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201805051744_1_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201805061038_05_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201805061038_05_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201806161010_GZTV_1500000_20180615_28757712_0_384_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201806161010_GZTV_1500000_20180615_28757712_0_384_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201808101815_WuXiInfo_1500000_20180810_29311670_0_326_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201808101815_WuXiInfo_1500000_20180810_29311670_0_326_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201901152235_JiangSuPublic_1500000_20190115_30968727_0_326_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201901152235_JiangSuPublic_1500000_20190115_30968727_0_326_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201901161744_201901161609363899158_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201901161744_201901161609363899158_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201901172244_JiangSuPublic_1500000_20190117_30989482_0_326_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201901172244_JiangSuPublic_1500000_20190117_30989482_0_326_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201901181635_2019011815234056209_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201901181635_2019011815234056209_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201901311824_ZheJiangFilmHD_2500000_20190131_31119212_0_326_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201901311824_ZheJiangFilmHD_2500000_20190131_31119212_0_326_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201901312113_31xw0131ztkx34_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201901312113_31xw0131ztkx34_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201904291231_ZheJiangPublicHD_2500000_20190429_31909707_0_326_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201904291231_ZheJiangPublicHD_2500000_20190429_31909707_0_326_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201905051137_a04ce07f5841fbb7f2d553b7c14a4edb_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201905051137_a04ce07f5841fbb7f2d553b7c14a4edb_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201905132033_XinHuaNews_1500000_20190513_32045216_0_384_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201905132033_XinHuaNews_1500000_20190513_32045216_0_384_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201905140712_DongNanHD_3000000_20190514_32048232_0_326_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201905140712_DongNanHD_3000000_20190514_32048232_0_326_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201905251825_XinHuaNews_1500000_20190525_32161395_0_384_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201905251825_XinHuaNews_1500000_20190525_32161395_0_384_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201905281830_TVSFinance_1500000_20190528_32189127_0_384_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201905281830_TVSFinance_1500000_20190528_32189127_0_384_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201906021221_XinHuaNews_1500000_20190602_32237891_0_384_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201906021221_XinHuaNews_1500000_20190602_32237891_0_384_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201906042227_fb7ec1f68f3f48c999acaa1af8c2a490_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201906042227_fb7ec1f68f3f48c999acaa1af8c2a490_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201906060900_1_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201906060900_1_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201906132149_Shan1XiTV_1500000_20190613_32355252_0_384_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201906132149_Shan1XiTV_1500000_20190613_32355252_0_384_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201906231456_20190623145439862367_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201906231456_20190623145439862367_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/201906231525_1_H169_720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/201906231525_1_H169_720.jpg -------------------------------------------------------------------------------- /demos/no-media/source/barrageWall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/barrageWall.js -------------------------------------------------------------------------------- /demos/no-media/source/commonPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/commonPlayer.js -------------------------------------------------------------------------------- /demos/no-media/source/common_mgvendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/common_mgvendor.js -------------------------------------------------------------------------------- /demos/no-media/source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/index.js -------------------------------------------------------------------------------- /demos/no-media/source/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/jquery.min.js -------------------------------------------------------------------------------- /demos/no-media/source/migusdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/migusdk.js -------------------------------------------------------------------------------- /demos/no-media/source/style-index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/style-index.css -------------------------------------------------------------------------------- /demos/no-media/source/vue_mgvendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/vue_mgvendor.js -------------------------------------------------------------------------------- /demos/no-media/source/wall.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/no-media/source/wall.css -------------------------------------------------------------------------------- /demos/simple-demo/css/app.08c2d989.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/simple-demo/css/app.08c2d989.css -------------------------------------------------------------------------------- /demos/simple-demo/danmaku.vdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/simple-demo/danmaku.vdt -------------------------------------------------------------------------------- /demos/simple-demo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/simple-demo/favicon.ico -------------------------------------------------------------------------------- /demos/simple-demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/simple-demo/index.html -------------------------------------------------------------------------------- /demos/simple-demo/js/app.276c9d29.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/simple-demo/js/app.276c9d29.js -------------------------------------------------------------------------------- /demos/simple-demo/js/app.276c9d29.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/simple-demo/js/app.276c9d29.js.map -------------------------------------------------------------------------------- /demos/simple-demo/js/chunk-vendors.4a7e2669.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/simple-demo/js/chunk-vendors.4a7e2669.js -------------------------------------------------------------------------------- /demos/simple-demo/js/chunk-vendors.4a7e2669.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/demos/simple-demo/js/chunk-vendors.4a7e2669.js.map -------------------------------------------------------------------------------- /images/architecture/global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/architecture/global.png -------------------------------------------------------------------------------- /images/bulletchat-Anti-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/bulletchat-Anti-block.png -------------------------------------------------------------------------------- /images/bulletchat-Anti-block01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/bulletchat-Anti-block01.png -------------------------------------------------------------------------------- /images/bulletchat-fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/bulletchat-fig.png -------------------------------------------------------------------------------- /images/bulletchat-fig01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/bulletchat-fig01.png -------------------------------------------------------------------------------- /images/bulletchat-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/bulletchat-wall.png -------------------------------------------------------------------------------- /images/bulletchat-wall01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/bulletchat-wall01.jpeg -------------------------------------------------------------------------------- /images/content-no-bulletchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/content-no-bulletchat.png -------------------------------------------------------------------------------- /images/content-no-bulletchat01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/content-no-bulletchat01.png -------------------------------------------------------------------------------- /images/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/content.png -------------------------------------------------------------------------------- /images/content01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/content01.png -------------------------------------------------------------------------------- /images/danmaku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/danmaku.png -------------------------------------------------------------------------------- /images/sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/sample1.png -------------------------------------------------------------------------------- /images/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/sample2.png -------------------------------------------------------------------------------- /images/sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/sample3.png -------------------------------------------------------------------------------- /images/sample4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/sample4.png -------------------------------------------------------------------------------- /images/sample5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/sample5.png -------------------------------------------------------------------------------- /images/sample6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/sample6.png -------------------------------------------------------------------------------- /images/sample7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/sample7.png -------------------------------------------------------------------------------- /images/sample8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/sample8.png -------------------------------------------------------------------------------- /images/video-highlights.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/video-highlights.jpeg -------------------------------------------------------------------------------- /images/video-live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/video-live.png -------------------------------------------------------------------------------- /images/video-live01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/video-live01.jpeg -------------------------------------------------------------------------------- /images/video-on-demand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/video-on-demand.png -------------------------------------------------------------------------------- /images/video-on-demand01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/video-on-demand01.png -------------------------------------------------------------------------------- /images/web_bulletchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/web_bulletchat.png -------------------------------------------------------------------------------- /images/web_bulletchat01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/web_bulletchat01.png -------------------------------------------------------------------------------- /images/why1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/why1.png -------------------------------------------------------------------------------- /images/why2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/why2.png -------------------------------------------------------------------------------- /images/why3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/why3.png -------------------------------------------------------------------------------- /images/why4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/why4.png -------------------------------------------------------------------------------- /images/why5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/why5.png -------------------------------------------------------------------------------- /images/why6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/why6.png -------------------------------------------------------------------------------- /images/why7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/why7.png -------------------------------------------------------------------------------- /images/why8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/images/why8.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/index.html -------------------------------------------------------------------------------- /index.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/index.zh.html -------------------------------------------------------------------------------- /index_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/index_en.html -------------------------------------------------------------------------------- /local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/local.css -------------------------------------------------------------------------------- /meeting.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/meeting.zh.md -------------------------------------------------------------------------------- /usecase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/usecase.html -------------------------------------------------------------------------------- /usecase.zh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/usecase.zh.html -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/danmaku/HEAD/w3c.json --------------------------------------------------------------------------------