gpt4 book ai didi

css - 在 Stylus 迭代中使用 CSS 变量

转载 作者:行者123 更新时间:2023-11-28 00:53:31 26 4
gpt4 key购买 nike

https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_variables

例如,在像 stylus 这样的 CSS 预处理器中:

// want to use this css variable
:root {
--i-menu-count: 5
}

$item-count = 5
for $i in (1..$item-count) {
.menu:nth-child({$i}) .menu-title {
transform: rotate(-180deg / ($item-count - 1) * ($i - 1))
}
}

是否可以使用 CSS 变量 --i-menu-count 来替换迭代中的 $item-count

最佳答案

我不确定,但是 - 是运算符,如果您的 var 名称以 -- 开头,stylus 解析器会抛出错误

我建议你用手写笔声明你的计数

喜欢

item-count = 5

for i in (1..item-count)
.menu:nth-child({i}) .menu-title {
transform: rotate(-180deg / (item-count - 1) * (i - 1))
}

关于css - 在 Stylus 迭代中使用 CSS 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53098801/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com