• vue js 实现页面在浏览器全屏切换


    需求:
    在浏览器中点击按钮实现页面的全屏与非全屏的切换。
    如图:
    全屏前:
    在这里插入图片描述
    全屏后:
    在这里插入图片描述

    具体实现代码如下:
    html:

    <template>
    	<div class="development-history" id="echarts-wrap">
    		<div class="btn" @click="tabFullScreen">切换全屏div>
    		<div class="echarts-chart" id="chart" ref="chart">div>
    	div>
    template>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    JS:

    // 实现全屏的方法
    requestFullScreen(){
    	let element = document.getElementById("echarts-wrap");
    	var requestMethod = element.requestFullScreen || //W3C
    		element.webkitRequestFullScreen || //Chrome
    		element.mozRequestFullScreen || //FireFox
    		element.msRequestFullScreen; //IE11
    	if (requestMethod) {
    		requestMethod.call(element);
    	} else if (typeof window.ActiveXObject !== "undefined") { //for Internet Explorer
    		var wscript = new ActiveXObject("WScript.Shell");
    		if (wscript !== null) {
    			wscript.SendKeys("{F11}");
    		}
    	}
    },
    //退出全屏 这里没有用到 ,esc键和F11可以直接退出,
    exitFull() {
    	// 判断各种浏览器,找到正确的方法
    	var exitMethod = document.exitFullscreen || //W3C
    		document.mozCancelFullScreen || //FireFox
    		document.webkitExitFullscreen || //Chrome等
    		document.webkitExitFullscreen; //IE11
    	if (exitMethod) {
    		exitMethod.call(document);
    	} else if (typeof window.ActiveXObject !== "undefined") { //for Internet Explorer
    		var wscript = new ActiveXObject("WScript.Shell");
    		if (wscript !== null) {
    			wscript.SendKeys("{F11}");
    		}
    	}
    },
    // 全屏切换
    tabFullScreen(){
    	this.isFullScreen = !this.isFullScreen;
    	if(this.isFullScreen){
    		// 全屏
    		this.requestFullScreen();
    	}else{
    		// 退出
    		this.exitFull();
    	}
    	this.echartsInit();
    },
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
  • 相关阅读:
    软件开发工具总结篇
    2.卷积神经网络(CNN)
    ubuntn 磁盘加载问题 启动阶段修复
    从零开始学Spring Boot系列-返回json数据
    C# 第三章:类、接口与结构 学习笔记
    C专家编程 第3章 分析C语言的声明 3.2 声明是如何形成的
    零基础学习Linux系统计划任务cron
    C# 串口软件
    【LeetCode】二分查找题解汇总
    【Java八股文总结】之MySQL数据库
  • 原文地址:https://blog.csdn.net/zuoyiran520081/article/details/132281426