videoPlayer() {
let that = this;
// #ifdef APP-PLUS
that.video = plus.video.createVideoPlayer('videoplayer', {
src: that.url,
autoplay: true, //是否自动播放
loop: true, //是否循环播放
controls: false, //是否显示默认播放控件
});
plus.webview.currentWebview().append(that.video);
that.video.requestFullScreen(); //全屏
that.video.addEventListener('click', function(e) {
e.preventDefault();
});
that.video.addEventListener('touchmove', function(e) {
e.preventDefault();
});
// #endif
},
留言