实例介绍
功能十分强大的HTML5弹幕插件 弹幕核心通用构件是一套基于JavaScript构建的弹幕控制器,意在催化HTML5下弹幕播放器的发展。同时方便 希望了解弹幕播放器运作原理的开发者,提供简单但是深入的入门。开发者们可以根据弹幕核心通用构件来自定义 自己的流媒体注释播放模式。 使用说明在文件夹下readme.md
【实例截图】
【核心代码】
4744302543286592445.rar
└── CommentCoreLibrary-master
├── bower.json
├── build
│ ├── CommentCoreLibrary.js
│ ├── CommentCoreLibrary.min.js
│ ├── scripting
│ │ ├── api
│ │ │ ├── Display.js
│ │ │ ├── Function.js
│ │ │ ├── Global.js
│ │ │ ├── Player.js
│ │ │ ├── Runtime.js
│ │ │ ├── ScriptManager.js
│ │ │ ├── Tween.js
│ │ │ └── Utils.js
│ │ ├── Host.js
│ │ ├── OOAPI.js
│ │ └── Worker.js
│ ├── style.css
│ └── style.min.css
├── BUILDING.md
├── CONTRIBUTING.md
├── demo
│ ├── debugger.js
│ ├── default.css
│ ├── index.htm
│ ├── intro
│ │ ├── index.htm
│ │ ├── main.js
│ │ └── my-page-styles.css
│ ├── libxml.js
│ ├── player-demo.htm
│ └── scripting
│ ├── ccl.htm
│ ├── index.htm
│ └── sandbox.js
├── docs
│ ├── CommentCoreLibraryAPI.md
│ ├── CommentManager.md
│ ├── CommentObject.md
│ ├── CommentProperties.md
│ ├── CommentSizes.md
│ ├── CommentTypes.md
│ ├── data-formats
│ │ ├── acfun-json.md
│ │ ├── bilibili-xml.md
│ │ ├── commonformat-json.md
│ │ └── Readme.md
│ ├── DoingItRight.md
│ ├── Events.md
│ ├── integration
│ │ └── README.md
│ ├── Intro.md
│ ├── PoweredByCCL.md
│ ├── Readme.md
│ └── scripting
│ ├── Debugging.md
│ ├── Display
│ │ ├── Abstractions.md
│ │ ├── DisplayObject.md
│ │ ├── Events.md
│ │ ├── Readme.md
│ │ └── Root.md
│ ├── Instances.md
│ ├── OOAPI.md
│ ├── Player
│ │ └── Readme.md
│ ├── Readme.md
│ ├── Runtime
│ │ ├── Readme.md
│ │ ├── Shadows.md
│ │ └── Timers.md
│ ├── Scripting-Diagram.png
│ ├── Scripting-Diagram.svg
│ ├── Tween
│ │ └── Readme.md
│ └── Utils
│ └── Readme.md
├── experimental
│ ├── animation
│ │ ├── animate.js
│ │ ├── animate.opacity.js
│ │ ├── animate.translation.js
│ │ └── index.htm
│ ├── extensions
│ │ ├── index.htm
│ │ └── player.js
│ ├── ReadMe.md
│ └── scripting
│ ├── deprecated
│ │ ├── api.worker.js
│ │ ├── bscript.js
│ │ └── libraries
│ │ ├── libBase.js
│ │ ├── libBitmap.js
│ │ └── libPlayer.js
│ └── Readme.md
├── Gruntfile.coffee
├── LICENSE
├── package.json
├── README.md
├── spec
│ ├── Array_spec.coffee
│ ├── CommentCoreLibrary_spec.coffee
│ ├── core
│ │ ├── CommentSpaceAllocator_spec.coffee
│ │ └── Comment_spec.coffee
│ ├── filter
│ │ └── SimpleFilter_spec.coffee
│ ├── parsers
│ │ ├── AcfunFormat_spec.coffee
│ │ └── BilibiliFormat_spec.coffee
│ └── scripting
├── src
│ ├── Array.js
│ ├── CommentCanvasLibrary.js
│ ├── CommentCanvasSpaceAllocator.js
│ ├── CommentCoreLibrary.js
│ ├── CommentProvider.js
│ ├── core
│ │ ├── CommentCoreLibrary.ts
│ │ ├── Comment.js
│ │ ├── CommentSpaceAllocator.js
│ │ ├── CommentSpaceAllocator.ts
│ │ ├── Comment.ts
│ │ └── Core.d.ts
│ ├── css
│ │ ├── base.css
│ │ └── fontalias.css
│ ├── extend
│ │ ├── ass2dm.js
│ │ ├── fefx.js
│ │ ├── lrc2dm.js
│ │ └── remote
│ │ ├── CCSend.js
│ │ ├── RConnect.js
│ │ ├── ReadMe.md
│ │ └── server
│ │ └── server.js
│ ├── filter
│ │ ├── CommentFilter.js
│ │ └── SimpleFilter.js
│ ├── parsers
│ │ ├── AcfunFormat.js
│ │ └── BilibiliFormat.js
│ └── scripting
│ ├── api
│ │ ├── CommentData.ts
│ │ ├── Display
│ │ │ ├── Bitmap.ts
│ │ │ ├── CommentBitmap.ts
│ │ │ ├── CommentButton.ts
│ │ │ ├── CommentCanvas.ts
│ │ │ ├── CommentField.ts
│ │ │ ├── CommentShape.ts
│ │ │ ├── Display.js
│ │ │ ├── DisplayObject.ts
│ │ │ ├── Display.ts
│ │ │ ├── Filter.ts
│ │ │ ├── Graphics.ts
│ │ │ ├── IComment.ts
│ │ │ ├── ISerializable.ts
│ │ │ ├── Matrix.ts
│ │ │ ├── MotionManager.ts
│ │ │ ├── Shape.ts
│ │ │ ├── Sprite.ts
│ │ │ └── TextField.ts
│ │ ├── external
│ │ │ ├── Base64.js
│ │ │ ├── Base64.ts
│ │ │ ├── Bitmap.js
│ │ │ ├── Effects.js
│ │ │ ├── LZ.js
│ │ │ ├── Readme.md
│ │ │ ├── Storage.js
│ │ │ ├── Typo.ts
│ │ │ ├── UIKit.js
│ │ │ └── WindowCanvas.ts
│ │ ├── Function.js
│ │ ├── Global.js
│ │ ├── OOAPI.d.ts
│ │ ├── Player
│ │ │ ├── Player.js
│ │ │ ├── Player.ts
│ │ │ └── Sound.ts
│ │ ├── Player.d.ts
│ │ ├── Runtime
│ │ │ ├── Permissions.ts
│ │ │ ├── Runtime.js
│ │ │ ├── Runtime.ts
│ │ │ ├── Supports.ts
│ │ │ └── Timer.ts
│ │ ├── Runtime.d.ts
│ │ ├── ScriptManager.js
│ │ ├── Tween
│ │ │ ├── Easing.ts
│ │ │ ├── Tween.js
│ │ │ └── Tween.ts
│ │ ├── Tween.d.ts
│ │ └── Utils
│ │ ├── Utils.js
│ │ └── Utils.ts
│ ├── Host
│ │ ├── Host.ts
│ │ └── Unpacker
│ │ ├── Button.ts
│ │ ├── DisplayObject.ts
│ │ ├── Shape.ts
│ │ ├── Sprite.ts
│ │ ├── TextField.ts
│ │ └── Unpacker.ts
│ ├── Host.js
│ ├── OOAPI.js
│ ├── Unpacker.js
│ └── Worker.js
└── test
├── ac940133.json
├── ACFun.json
├── av207527.xml
├── bilibili.xml
├── boss.xml
├── comment.xml
├── extended.xml
├── invalid
│ ├── no_closing.xml
│ ├── syntax_error.xml
│ └── xss.xml
├── mikunoshoushitsu.xml
├── Readme.md
├── rokubunnoichi.xml
├── scripting
│ ├── 3dmodeler-assets
│ │ ├── 2984.jmf
│ │ ├── 3404.jmf
│ │ └── difficult_model.jmf
│ ├── 3dmodeler.biliscript
│ ├── 3dplane.biliscript
│ ├── 3dsphere.biliscript
│ ├── av734512.xml
│ ├── boundingbox.biliscript
│ ├── comment-festival-v3.xml
│ ├── crazy-night.xml
│ ├── greendam.biliscript
│ ├── jinzou-enemy.xml
│ ├── kanpai-standards-compliant.xml
│ ├── kanpai.xml
│ ├── madoka.biliscript
│ ├── manzoku.biliscript
│ ├── round-and-round.xml
│ └── tsubasa.xml
├── subtitles
│ └── [YYDM-11FANS][Strike_Witches][BDRIP][01][X264_AAC][1280X720].uni_gb.ass
├── test2.xml
├── test.xml
├── unowen.xml
└── utsukushiki_mono.xml
50 directories, 206 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论