单元方法
typeof(node)
以字符串形式返回' node '类型。
type(12)
// => 'unit'
typeof(12)
// => 'unit'
typeof(#fff)
// => 'rgba'
type-of(#fff)
// => 'rgba'
别名为type-of和type。
unit(val[, type])
返回一个指示“val”类型的字符串或一个空字符串,或分配给定的“类型”而不进行单元转换。
unit(10)
// => ''
unit(15in)
// => 'in'
unit(15%, 'px')
// => 15px
unit(15%, px)
// => 15px
percentage(num)
将数字转换为百分数。
percentage(.5)
// => 50%
percentage(4 / 100)
// => 4%
网友评论