极度推荐的文章和网站

推荐文章---收录中


因为是及时雨,这里就给他放在开头啦:http://www.cnblogs.com/zhuzhenwei918/p/7241971.html

webpack3.0配置指南:http://www.cnblogs.com/caideyipi/articles/7080010.html


超酷的伪元素网站:https://tympanus.net/Development/CreativeLinkEffects/#cl-effect-17


数组去重引发的构想,链接地址:https://www.toobug.net/article/array_unique_in_javascript.html

然而,不要只顾着高兴了。有一句话是这么说的“不要因为走得太远而忘了为什么出发”。我们为什么要为数组去重呢?因为我们想得到不重复的元素列表。而既然已经有Set了,我们为什么还要舍近求远,使用数组呢?是不是在需要去重的情况下,直接使用Set就解决问题了?这个问题值得思考。


node.js中的exports和module.exports ,链接地址:http://cnodejs.org/topic/52308842101e574521c16e06

另外,附带一句自己的吐槽。node.js v6本身是**不直接支持import和export的,但是支持require和exports和module.exports **


Postman的认识,安装和使用,这是一个用来测试restAPI的东西,可以测试各种接口,是一个chrome插件,链接:http://www.cnblogs.com/hubgit/p/6589701.html


再谈清除浮动: https://swordair.com/on-clearing-float-again/


双飞翼/圣杯布局(最简单的解析):http://www.jianshu.com/p/f9bcddb0e8b4

Flex布局:http://blog.csdn.net/magneto7/article/details/70854472

block,inline-block,inline 的区别:http://www.cnblogs.com/KeithWang/p/3139517.html

input和button不同高的问题:http://caibaojian.com/css-input-button.html


react中bind(this)系列:http://blog.csdn.net/u010977147/article/details/53420407


git操作:http://www.jianshu.com/p/e2a15d01284c


JS获取元素:https://segmentfault.com/q/1010000007502003

JS获取各种地方的样式:http://blog.csdn.net/lzding/article/details/46317777

用JS替代jQuery:http://www.webhek.com/post/you-do-not-need-jquery.html

网页可见区域宽: document.documentElement.clientWidth;
网页可见区域高: document.documentElement.clientHeight;
网页正文全文宽: document.documentElement.scrollWidth;
网页正文全文高: document.documentElement.scrollHeight;
网页被卷去的高(ff):document.body.scrollTop;
网页被卷去的高(ie): document.documentElement.scrollTop;
网页被卷去的左:document.body.scrollLeft;
网页正文部分上:window.screenTop;
网页正文部分左:window.screenLeft;
某个元素的宽度:obj.offsetWidth;
某个元素的高度:obj.offsetHeight;
某个元素的上边界到body最顶部的距离:obj.offsetTop;(在元素的包含元素不含滚动条的情况下)
某个元素的左边界到body最左边的距离:obj.offsetLeft;(在元素的包含元素不含滚动条的情况下)
返回当前元素的上边界到它的包含元素的上边界的偏移量:obj.offsetTop(在元素的包含元素含滚动条的情况下)
返回当前元素的左边界到它的包含元素的左边界的偏移量:obj.offsetLeft(在元素的包含元素含滚动条的情况下


JS随机生成颜色值 :http://www.jb51.net/article/102109.htm


如何区分Babel中的stage-0,stage-1,stage-2:http://www.cnblogs.com/chris-oil/p/5717544.html

推荐网站

icon-font ,icon-moon ,icon-finder

css外边距合并精讲 : http://blog.sina.com.cn/s/blog_601b97ee0101b8xe.html

HTML5语义化生动的解释: http://blog.csdn.net/coco379/article/details/52938071

display:none , visibility, opacity 的精解!!!!: http://blog.csdn.net/zxf13598202302/article/details/50354644

Chrome工具的完美讲解: https://www.cnblogs.com/LibraThinker/p/5981346.html

posted @ 2017-07-26 14:16  海客无心x  阅读(287)  评论(0编辑  收藏  举报