logo头像
Snippet 博客主题

other

浏览器宽度和高度

innerWidth outerWidth innerWidth: 在移动端是整个视图的大小,而不是布局大小,布局大小 = 视图大小 - 顶部大小(wifi\时间那个头部) outerWidth: 有兼容性问题,尽量少用,outerW...

浏览器渲染优化

1:尽量多用class2:先用display:none,把最终结果输出后在把none改成block3:遇到能给图片设定高度和宽度的尽量提前设定,要不然每次都会重绘

日常记录

关于new的过程1234567891011121314function Father(name){ this.name=name;}Father.prototype={ getName:fun...

markdown语法使用

概诉 Markdown是一种书写的格式,语法比较简单,用它编写的 纯文本可以转换成有效的XHTML文档,非常适合用来记录笔记、博客。熟练掌握它即可以让页面美观,也能大大提高编写效率。但在编写过程中需要注意大部分有符号的地方必需要空格才...

electron

electron常用设置1 . 设置为不可拖拽 123body{ -webkit-app-region: no-drag} 2 . 远程事件从浏览器中关闭应用123var electron = require...