Min's blog

I choose to see the beauties in the world.

导航

2018年3月28日

摘要: function backTop(back) { back.hide(); $(window).scroll(function () { $(window).scrollTop() > 0 ? back.fadeIn(500) : back.fadeOut(500); }); back.click( 阅读全文

posted @ 2018-03-28 16:25 Min77 阅读(403) 评论(0) 推荐(0) 编辑

2018年2月5日

摘要: 1.Sync Settings 搭配github,同步你的atom插件信息,配置信息,让你轻松实现一台电脑配置,多台电脑共享。 2.Emmet 能够基于Emmet语法产生HTML,做过前段开发的不会不知道这个插件吧。好用到哭。 3.Atom Beautify 代码格式化工具,可以设置在保存时自动格式 阅读全文

posted @ 2018-02-05 15:10 Min77 阅读(142) 评论(0) 推荐(0) 编辑

2018年1月10日

摘要: git status 文件状态git add ./<file> 添加到暂存区,点代表全部文件,<file>可设置单个文件git commit -m "aaa" 提交到版本库git commit -a(添加到暂存区) -m "aaaa" 省略ADD的操作git reset HEAD <file> 撤销 阅读全文

posted @ 2018-01-10 14:35 Min77 阅读(114) 评论(0) 推荐(0) 编辑

2017年12月21日

摘要: 微软雅黑: Microsoft YaHei 宋体:SimSun 黑体:SimHei 仿宋: FangSong 楷体: KaiTi 隶书:LiSu 幼圆:YouYuan 华文细黑:STXihei 华文楷体:STKaiti 华文宋体:STSong 华文中宋:STZhongsong 华文仿宋:STFang 阅读全文

posted @ 2017-12-21 17:00 Min77 阅读(114) 评论(0) 推荐(0) 编辑

该文被密码保护。 阅读全文

posted @ 2017-12-21 16:56 Min77 阅读(1) 评论(0) 推荐(0) 编辑

2017年12月19日

摘要: .inputfile + label { font-size: 1.25em; font-weight: 700; color: white; background-color: black; display: inline-block; pointer-events: none;} .inputf 阅读全文

posted @ 2017-12-19 16:14 Min77 阅读(94) 评论(0) 推荐(0) 编辑

2017年12月13日

摘要: 1.连接数据库成功后提示db.collection is not a function 阅读全文

posted @ 2017-12-13 16:32 Min77 阅读(90) 评论(0) 推荐(0) 编辑

2017年12月11日

摘要: [ convert | identify | mogrify | composite | montage | compare | display | animate | import | conjure ] convert:转换图像格式和大小,模糊,裁剪,驱除污点,抖动,临近,图片上画图片,加入新图 阅读全文

posted @ 2017-12-11 14:29 Min77 阅读(552) 评论(0) 推荐(0) 编辑

2017年11月28日

摘要: enctype这个属性管理的是表单的MIME(Multipurpose Internet Mail Extensions)编码,共有三个值可选: 1、application/x-www-form-urlencoded 默认值,作用是设置表单传输的编码,不能用于上传文件 eg: AJAX中xmlHtt 阅读全文

posted @ 2017-11-28 10:36 Min77 阅读(6678) 评论(0) 推荐(1) 编辑

2017年11月16日

摘要: + 将一个数字的字符串转化为数字很简单的一种做法就是在前面加+号。 * 使用乘法符号*转化: ~~ 运算符~原意是按位取反,使用~~可以将一个可以转化为数字的字符串转化成整数: >> 运算符>>原意是带符号右移,使用>> 0可以将一个可转化的字符串转化成整数: >>> 运算符>>>原意是不带符号右移 阅读全文

posted @ 2017-11-16 17:11 Min77 阅读(123) 评论(0) 推荐(0) 编辑