摘要: sass入门-sass教程 http://www.w3cplus.com/sassguide/ CanvasRenderingContext2D https://developer.mozilla.org/zh-CN/docs/Web/API/CanvasRenderingContext2D Pho 阅读全文
posted @ 2019-11-23 13:57 写手在作画 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 阮一峰的网络日志 http://www.ruanyifeng.com/blog/ 囧克斯(勾三股四 阿里巴巴) http://jiongks.name/ CSS探索之旅(杜瑶 去哪儿网) http://blog.doyoe.com/ JerryQu 的小站 https://imququ.com/ 小 阅读全文
posted @ 2019-11-23 13:56 写手在作画 阅读(223) 评论(0) 推荐(0) 编辑
摘要: Swiper中文APi http://www.swiper.com.cn/ fullPage.js http://www.jq22.com/jquery-info1124 多种动态效果的CSS3文字动画插件:textillate.js http://www.holdcode.com/web/deta 阅读全文
posted @ 2019-11-23 13:56 写手在作画 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 移动Web相关 iphone分辨率终极指南 http://images.shejidaren.com/wp-content/uploads/2014/09/iphone-Resolutions-guide.png 使用Flexible实现手淘H5页面的终端适配 https://github.com/ 阅读全文
posted @ 2019-11-23 13:55 写手在作画 阅读(174) 评论(0) 推荐(0) 编辑
摘要: CSS相关 css的div垂直居中的方法,百分比div垂直居中 http://www.haorooms.com/post/css_div_juzhong css常用效果总结 http://www.haorooms.com/post/css_common CSS参考手册 http://css.doyo 阅读全文
posted @ 2019-11-23 13:55 写手在作画 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 前端开发相关的优秀网站、博客、以及活跃开发者 https://github.com/jikeytang/front-end-collect 前端网址导航 http://www.whycss.com/ 各类移动端页面参考 http://k.swao.cn/js/web/mobileRefer.html 阅读全文
posted @ 2019-11-23 13:54 写手在作画 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 移动前端资源整理 http://ionichina.com/topic/570b1f4ecd63e4247a7cfcf3 Node.js API 中文版 http://nodeapi.ucdok.com/#/api/ Node.js 中文网 http://nodejs.cn/ Node.js 英文网 阅读全文
posted @ 2019-11-23 13:52 写手在作画 阅读(108) 评论(0) 推荐(0) 编辑
摘要: React Native相关 React Native 官网 http://facebook.github.io/react-native/ React Native 中文网 http://reactnative.cn/ 手把手教React Native实战开发视频教程 1-50集 https:// 阅读全文
posted @ 2019-11-23 13:51 写手在作画 阅读(152) 评论(0) 推荐(0) 编辑
摘要: GitHub https://github.com/ GitHubPages https://pages.github.com/ Hexo https://hexo.io/ Gist https://gist.github.com/ 搭建Hexo http://www.zipperary.com/c 阅读全文
posted @ 2019-11-23 13:50 写手在作画 阅读(66) 评论(0) 推荐(0) 编辑
摘要: Vue.js中文文档 https://vuefe.cn/v2/guide/ Vue.js官网 http://cn.vuejs.org/ Vuejs 1.0 系列教程 https://laravist.com/series/vue-js-1-0-in-action-series vuejs入门基础 h 阅读全文
posted @ 2019-11-23 13:49 写手在作画 阅读(130) 评论(0) 推荐(0) 编辑
摘要: React 技术栈系列教程 - 阮一峰的网络日志 http://www.ruanyifeng.com/blog/2016/09/react-technology-stack.html React.js官网 https://facebook.github.io/react/index.html Rea 阅读全文
posted @ 2019-11-23 13:49 写手在作画 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Sea.js官网 http://seajs.org/docs/ sea.js官方文档 https://github.com/seajs/seajs/issues/547 RequireJS官网 http://requirejs.org/ RequireJS中文网 http://www.require 阅读全文
posted @ 2019-11-23 13:48 写手在作画 阅读(99) 评论(0) 推荐(0) 编辑
摘要: JavaScript菜鸟教程 http://www.runoob.com/jsref/dom-obj-document.html JavaScript书籍下载 http://fe.linqing07.com/fontend/read.php?tid=63&fid=8&page=1 林卿的书架 htt 阅读全文
posted @ 2019-11-23 13:47 写手在作画 阅读(84) 评论(0) 推荐(0) 编辑
摘要: null表示"没有对象",即该处不应该有值 null和undefined基本是同义的,只有一些细微的差别。 作为函数的参数,表示该函数的参数不是对象。 作为对象原型链的终点。 Object.getPrototypeOf(Object.prototype)// null undefined表示"缺少值 阅读全文
posted @ 2019-11-23 11:57 写手在作画 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 。。。啥也不说了,难受啊 toggle-switch.vue <template> <label role="checkbox" :class="['switch', { toggled }]"> <input type="checkbox" class="switch-input" @change 阅读全文
posted @ 2019-11-23 11:47 写手在作画 阅读(1992) 评论(0) 推荐(0) 编辑
摘要: 平时想要遍历一个对象时一般会采用for/in语句,通过for/in语句可以快速地拿到对象的key和value值 var obj = {name:'zhang',age:24}; for(var key in obj){ console.log(key); //name age console.log 阅读全文
posted @ 2019-11-23 11:14 写手在作画 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 对象的两种取值方式 通过在.后面直接加属性名取值,这也是我们最常使用的一种方式 let obj = {name: 'wan'}; console.log(obj.name); //wan 这是最普通的一种方式,还有一种方式我们用的不太多,就是使用[ ]包住属性名取值,类似于数组那样 let obj 阅读全文
posted @ 2019-11-23 11:10 写手在作画 阅读(7521) 评论(0) 推荐(0) 编辑