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  
            },
最後修改日期: 2021 年 7 月 21 日

作者

留言

撰寫回覆或留言

發佈留言必須填寫的電子郵件地址不會公開。