gpt4 book ai didi

css - 少守卫 : positive percentage

转载 作者:太空宇宙 更新时间:2023-11-04 15:27:39 26 4
gpt4 key购买 nike

遗憾的是,我试过目视它,但没有结果。

我想做的是根据百分比进行变亮/变暗混合:如果百分比 < 0,则执行“变暗(@color,@light)”,否则如果百分比 > 0,则执行“变亮(@color,@light)”。

像这样:

._changeColor(@color, @light) when (ispercentage(@light)) and (@light > 0%) {
color: lighten(@color, @light);
}

但它不想工作。我用过类似的东西

.mixin (@a) when (isnumber(@a)) and (@a > 0) {...}

而且效果很好...如果对百分比有什么特别的想法,您有什么想法吗?

谢谢!=)

最佳答案

除了“不起作用”之外,到底是什么问题?

这个

._changeColor(@color, @light) when (ispercentage(@light)) and (@light > 0%) {
color: lighten(@color, @light);
}


._changeColor(@color, @light) when (ispercentage(@light)) and (@light < 0%) {
color: darken(@color, @light * -1);
}

.foo {
._changeColor(#ff00ff, -10%);
}

作品in the online LESS converter .

关于css - 少守卫 : positive percentage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13817226/

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