video 視頻全屏播放


      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
		);
	}

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM