视频地址:视频链接
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
},
是安卓机的性能原因吗,可是很新的手机播放也会卡...
9***@qq.com (作者)
是啊,懊恼死了,不知道可以怎么解决
2019-09-27 14:31
大前端小王子
回复 9***@qq.com: 你好,请问你这个问题解决了吗
2020-10-14 11:42