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)
喜欢
random()
用来获取一个随机数:
>> random()
0.03886
>> random()
0.66527
>> random()
0.8125
>> random()
0.26839
>> random()...
yekong
3年前 (2021-08-19)
喜欢
max()
>> max(1,5)
5
>> max(1px,5px)
5px
如果在 max() 函数中有不同单位,将会报错:
>> max(1,3px,5%,6)
SyntaxError: Incompatible units: '...
yekong
3年前 (2021-08-19)
喜欢
min()
min() 函数功能主要是在多个数之中找到最小的一个,这个函数可以设置任意多个参数:
>> min(1,2,1%,3,300%)
1%
>> min(1px,2,3px)
1px
>> min(1em,2em,6em)
1em
不...
yekong
3年前 (2021-08-19)
喜欢