unitless()
函数相对来说简单明了些,只是用来判断一个值是否带有单位,如果不带单位返回的值为 true,带单位返回的值为 false:
>> unitless(100)
true
>> unitless(100px)
false
>> ...
yekong
3年前 (2021-08-19)
喜欢
unit()
函数主要是用来获取一个值所使用的单位,碰到复杂的计算时,其能根据运算得到一个“多单位组合”的值,不过只充许乘、除运算:
>> unit(100)
""
>> unit(100px)
"px"
>&...
yekong
3年前 (2021-08-19)
喜欢
type-of()
函数主要用来判断一个值是属于什么类型
返回值:
number 为数值型。
string 为字符串型。
bool 为布尔型。
color 为颜色型。
>> type-of(100)
"number"
>> type-...
yekong
3年前 (2021-08-19)
喜欢
index() 函数类似于索引一样,主要让你找到某个值在列表中所处的位置。
在 Scss 中,第一个值就是
1,第二个值就是
2,依此类推:
>> index(1px solid red, 1px)
1
>> index(1px solid red, ...
yekong
3年前 (2021-08-19)
喜欢
zip()
多个列表值转成一个多维的列表:
>> zip(1px 2px 3px,solid dashed dotted,green blue red)
((1px "solid" #008000), (2px "dashed"...
yekong
3年前 (2021-08-19)
喜欢
append()
用来将某个值插入到列表中,并且处于最末位
>> append(10px 20px ,30px)
(10px 20px 30px)
>> append((10px,20px),30px)
(10px, 20px, 30px)
>>...
yekong
3年前 (2021-08-19)
喜欢
join()
将两个列表连接合并成一个列表。
>> join(10px 20px, 30px 40px)
(10px 20px 30px 40px)
>> join((blue,red),(#abc,#def))
(#0000ff, #ff0000, #a...
yekong
3年前 (2021-08-19)
喜欢
nth(\(list,\)n)
nth() 函数用来指定列表中某个位置的值。不过在 Scss 中,nth() 函数和其他语言不同,
1 是指列表中的第一个标签值,
2 是指列给中的第二个标签值,依此类推。如:
>> nth(10px 20px 30px,1)
10px...
yekong
3年前 (2021-08-19)
喜欢
length()
主要用来返回一个列表中有几个值,简单点说就是返回列表清单中有多少个值:
>> length(10px)
1
>> length(10px 20px (border 1px solid) 2em)
4
>> length(bor...
yekong
3年前 (2021-08-19)
喜欢
Can't find node in PATH, trying to find a node binary on your system
husky > pre-commit (node v8.4.0)
lint-staged requires at least v...
yekong
3年前 (2021-08-19)
喜欢