标签:style blog color ar sp div on log bs
今儿写个type-of,算是备忘录吧。
type-of(0) // number type-of(1px) // number
type-of(a) // string type-of("a") // string
type-of(true) // bool type-of(0<1) // bool
type-of(rgba(1,2,3,.3)) // color type-of(rgb(1,2,3)) // color type-of(#fff) // color type-of(red) // color
// 需要加括号 type-of((1px,2px,3px)) // list type-of((1px 2px 3px rgba(0,0,0,.3))) // list
type-of((a:1px,b:2px)) // map
type-of(null) // null
@if type-of(null) == "null" { ... }
标签:style blog color ar sp div on log bs
原文地址:http://www.cnblogs.com/ccforeverd/p/4036886.html