Sass函数:Introspection 函数 -type-of()

Posted keep

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sass函数:Introspection 函数 -type-of()相关的知识,希望对你有一定的参考价值。

type-of() 函数主要用来判断一个值是属于什么类型:

返回值:

  • number 为数值型。
  • string 为字符串型。
  • bool 为布尔型。
  • color 为颜色型。
>> type-of(100)
"number"
>> type-of(100px)
"number"
>> type-of("asdf")
"string"
>> type-of(asdf)
"string"
>> type-of(true)
"bool"
>> type-of(false)
"bool"
>> type-of(#fff)
"color"
>> type-of(blue)
"color"
>> type-of(1 / 2 = 1)
"string"

 

以上是关于Sass函数:Introspection 函数 -type-of()的主要内容,如果未能解决你的问题,请参考以下文章

sass的函数简介

Sass 字符串函数

Introspection 函数

Python:enumerate函数introspection对象自省推导式(列表(list)推导式字典(dict)推导式集合(set)推导式)

SASS - 函数

Sass学习笔记