编辑: 喜太狼911 | 2019-07-04 |
?falseà? ?退出全屏 ? '
fullScreen'
: ?function(isFullScreen){ ? //console.debug('
out ?listener ?isFullScreen ? ?== ?'
,isFullScreen);
? }, ? //播放状态 ? '
playStatus'
: ?function(status){ ? /*status 可为 ?{ready: ? 播放器已准备就绪 ,seeking: 搜索 , ? suspended: 暂停 , ?playing: 播放中 ?, ?playEnd: 播放结束 }'
*/ ? //console.debug('
out ?listener ?status ?== ?'
,status);
? }, ? //拖动播放位置变化 ?;
?second ?拖动播放的位置(单位秒) ? '
dragPlay'
: ?function(second){ ? //console.debug('
out ?listener ?dragPlay ?== ?'
,second);
? } ? ? ? ? ? ? ? ? ?} ? ?);
? ? l? ? 获取参数和状态 ? getVolume() ? ?功能: ?取当前音量 ? ?返回: ?Number, ?取值范围(0 ?到?1) ?;
如?0.5 ? getDuration() ? ?功能: ?取当前视频总时长 ? ?返回: ?int, ?单位秒 ? getCurrentTime() ? ?功能: ?取当前播放位置 ? ?返回: ?int, ?单位秒 ? isSeeking() ? ?功能: ?当前播放状态是否 ? 加载中 ? ?返回: ?Boolean ?;
?true ?为 加载中 ? isSuspended() ? ?功能: ?当前播放状态是否 ? 暂停中 ? ?返回: ?Boolean ?;
?true ?为 暂停中 ? isPlaying() ? ?功能: ?当前播放状态是否 ? 播放中 ? ?返回: ?Boolean ?;
?true ?为 播........