首页 > 代码库 > SASS type-of 函数

SASS type-of 函数

今儿写个type-of,算是备忘录吧。

1.number

type-of(0)                    // numbertype-of(1px)                  // number

2.string

type-of(a)                    // stringtype-of("a")                  // string

3.bool

type-of(true)                 // booltype-of(0<1)                  // bool

4.color

type-of(rgba(1,2,3,.3))       // colortype-of(rgb(1,2,3))           // colortype-of(#fff)                 // colortype-of(red)                  // color

5.list(sass.list=js.array)

// 需要加括号type-of((1px,2px,3px))        // listtype-of((1px 2px 3px rgba(0,0,0,.3))) // list

6.map(sass.map=js.json)

type-of((a:1px,b:2px))        // map

7.null

type-of(null)                 // null

注:检测格式,要用字符串

@if type-of(null) == "null" { ... }

 

SASS type-of 函数