摘要:
1.打开父子模态创建, //主进程中触发事件 /** * 父子模态窗口 */ let childDownModal; ipcMain.on('child-down-modal', () => { childDownModal = new BrowserWindow({ parent: mainWin 阅读全文
摘要:
tips:写的时候,如果不在弹窗之前调用一次阻止默认事件,窗口就会直接关闭; 对话框dialog 在主进程中调用,const {dialog} = require('electron'); 传送门:electron dialog对话框 阅读全文
摘要:
1.安装electron 2.建立主线程 main.js // Modules to control application life and create native browser window const { app, BrowserWindow, globalShortcut } = re 阅读全文
摘要:
1.-webkie-box-orient:vertical没大打包上,解决方案 2.打包静态文件路径报错 首先修改配置文件。 vue2.x 修改config/index.js module.exports = { dev: { // Paths assetsSubDirectory: 'static 阅读全文
摘要:
1.首页需要设置legend let index = 0; var myCharts = this.$echarts.init(document.getElementById(this.id)); var option = { title: { text: this.title, left: "ce 阅读全文
摘要:
首先通过百度获取经纬度 <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf8" /> <meta name="viewport" content="initial- 阅读全文
摘要:
CSS3与文字渐变光影流动动画效果实现 1.shape-outside,shape-margin等; by zhangxinxu from https://www.zhangxinxu.com/wordpress/?p=8453 2.小tips:了解CSS/CSS3原生变量var by zhangx 阅读全文
摘要:
function BinaryTree(){ var Node = function(key){ this.key = key; //值 this.left = null; //左箭头 this.right = null; //右箭头 } ... 阅读全文