public videofull() {
//全屏播放視頻
var _this = this;
_this.video = document.getElementById('homeVideo'); //視頻
_this.btnFullScreen = document.getElementById('btn_fullscreen'); // 全屏點擊按鈕
//實現全屏功能
_this.btnFullScreen.addEventListener('click',function() {
// if (_this.video.requestFullscreen) {
// _this.video.requestFullscreen();
// } else if (_this.video.mozRequestFullScreen) {
// _this.video.mozRequestFullScreen();
// } else if (_this.video.webkitRequestFullscreen) {
// _this.video.webkitRequestFullscreen();
// } else if (_this.video.msRequestFullscreen) {
// _this.video.msRequestFullscreen();
// }
_this.isAutoplay = !_this.isAutoplay;
// if(!_this.isAutoplay){
// _this.video.play();
// }
},
false
);
}