触摸屏视频播放手势支持,上下滑调整音量,左右滑调整进度
< Відгуки до 触摸屏视频优化
双指或双指以上的默认4倍速与单指的4倍速在功能上冲突了,TouchGesture.VideoGesture.prototype.onTouchStart=function(e) 函数中的双指判断 if(this.startTouchFingers==2) 可以改成暂停或其他功能,在大佬还没更新前,有需要的可以先改成(暂时用着)if(dis>longside/4){ // 两个触摸到相隔太远,取消触摸结果 .....}else{ // 2个手指触摸 if(this._videoElement.paused == true){ this._videoElement.play(); } else if(this._videoElement.paused == false){ this._videoElement.pause(); }}
Sign in to post a reply.
双指或双指以上的默认4倍速与单指的4倍速在功能上冲突了,TouchGesture.VideoGesture.prototype.onTouchStart=function(e) 函数中的双指判断 if(this.startTouchFingers==2) 可以改成暂停或其他功能,
在大佬还没更新前,有需要的可以先改成(暂时用着)
if(dis>longside/4){
// 两个触摸到相隔太远,取消触摸结果
.....
}else{
// 2个手指触摸
if(this._videoElement.paused == true){
this._videoElement.play();
} else if(this._videoElement.paused == false){
this._videoElement.pause();
}
}