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