js監聽全屏下的esc事件

window.onresize = function() {
			if (!checkFull()) {
				//觸發esc事件,執行業務邏輯。
			}
		};

		function checkFull() {
			var isFull = document.fullscreenEnabled
					|| window.fullScreen
					|| document.webkitIsFullScreen
					|| document.msFullscreenEnabled;

			if (isFull === undefined)
				isFull = false;
			return isFull;
		}
相關文章
相關標籤/搜索