download
pc端下载插件。源码
pluginName: download
该插件默认隐藏,如需开启如下配置playerConfig
const player = new Player({
...,
download: true //显示下载按钮
})
提示
本插件采用开源 downloadjs 实现下载功能。基于该开源插件实现的原理,xgplayer无法提供统一下载进度事件。如果有强烈业务需求,可以参考 downloadjs xmlHttpRequest 逻辑实现一个自定义的下载插件
config
position
@type
:String
default
:controlsRight
, 具体枚举值请看plugin-positions
插件DOM挂载位置,默认为player.controls.right
index
@type
:Number
default
:3
插件DOM在挂载点内的排序,默认为3,越小越靠前(若index相同,后实例化的插件会被放置在前面)
disable
@type
:Boolean
default
:true
是否禁用,默认true
该配置项可通过playerConfig.download设置布尔值控制,默认值是false, 例如:
const playerConfig = {
download: true //显示下载按钮
...
}