12 2017 档案

摘要:和sui、light7有一些渊源,项目使用的是light7,不过其他两者的文档也都看了,感觉不到大的差别。 1.默认的是竖屏情况下的展示。隐约的表明我们要自己禁止横屏或是自己做横屏适应。我的做法是用户横屏时直接出弹框提示。 2.以375px宽设备的逻辑像素为基准 20px=1rem,计算公式为 x/ 阅读全文
posted @ 2017-12-24 17:27 Merrys 阅读(506) 评论(0) 推荐(0)
摘要:19-03-30:近期一些想的通彻了些,能够用通用的语言来表达了: once HTMLElement is done, most of HTML attribute have corresponding property; attribute can not be changed unless re 阅读全文
posted @ 2017-12-11 19:36 Merrys 阅读(888) 评论(0) 推荐(0)
摘要:一、初识原型 JS的引用类型会内置一个特殊的属性prototype。默认的prototype是object类型的,是引用类型。既然默认的prototype是object类型的,那么prototype也会有一个原型,并且指向object的原型。 另外补充一点,function的原型可直接访问,obje 阅读全文
posted @ 2017-12-09 20:45 Merrys 阅读(891) 评论(0) 推荐(0)
摘要:page3.Overview of Blocking vs Non-Blocking This overview covers the difference between blocking and non-blocking calls in Node.js. This overview will 阅读全文
posted @ 2017-12-08 23:21 Merrys 阅读(249) 评论(0) 推荐(0)
摘要:page1.How do I start with Node.js after I installed it? Once you have installed Node, let's try building our first web server. Create a file named "ap 阅读全文
posted @ 2017-12-07 23:05 Merrys 阅读(263) 评论(0) 推荐(0)
摘要:bootstrap中栅格布局源码。主要是为了多熟悉less,然后就是更加痛彻的明白bootstrap的原理。 (一)布局容器 less\grid.less .container { .container-fixed(); @media (min-width: @screen-sm-min) { wi 阅读全文
posted @ 2017-12-06 23:03 Merrys 阅读(278) 评论(0) 推荐(0)
摘要:一、Mixin Mixins are a way of including ("mixing in") a bunch of properties from one rule-set into another rule-set. Mixins是一种将(一组样式规则)添加到(另一组样式规则中)的方法。 阅读全文
posted @ 2017-12-03 16:53 Merrys 阅读(453) 评论(0) 推荐(0)