07 2014 档案

摘要:0.5.3版本对Model数据验证时,绑定Error就可以了: (function(){ var Model = Backbone.Model.extend({ initialize : function(){ ... 阅读全文
posted @ 2014-07-10 09:47 kingwell 阅读(741) 评论(0) 推荐(0)
摘要:根据之前的一些项目,总结了一下重置CSS: 1 @charset "UTF-8"; 2 3 html { 4 background: #FFF; 5 font-size: 62.5%; 6 -ms-text-size-adjust: 100%; 7 -... 阅读全文
posted @ 2014-07-07 15:19 kingwell 阅读(1147) 评论(0) 推荐(0)
摘要:sass功能强大,特别是支持for循环,节省大量开发时间,但是在开发时遇到一个问题,直接使用%时没有问题,当有变量时再加% 单位在编译时报错;这样没有问题:@for $width from 0 to 10{ .wp#{$width}{ width:$width px; }}... 阅读全文
posted @ 2014-07-07 14:36 kingwell 阅读(1055) 评论(0) 推荐(1)