gpt4 book ai didi

javascript - Lesscss - 当数字没有单位时

转载 作者:行者123 更新时间:2023-11-29 09:53:15 24 4
gpt4 key购买 nike

如何检查一个数字是否没有单位?必须有比以下更短的方法:

.margin(@i) when (isnumber(@i)) and not (ispixel(@i)) and not (ispercentage(@i)) and not (isem(@i)) and not (isunit(@i,rem)) and not (@i = auto) {
...
}

我认为 如果不是 (isunit(@i)) 会成功,但这是行不通的...

我的目标是使用默认单位并尽可能使用“.font-size(10)”等无单位函数。仅当值没有单位时才应使用默认单位,如果它有像​​“.font-size(2em)”这样的单位,则该值保持其单位。当默认单位为“rem”或以rem为单位时,该函数必须在rem属性前加上一个像素值(旧浏览器)并计算rem值:

".font-size(5)"应该输出:(当@default-unit: rem 时)

font-size: 5px;
font-size: 0.5em;

我已经完全使用了以下功能:

.font-size(@i) when (isunit(@i,rem)) {
font-size: unit(@i*10,px);
font-size: @i;
}

.font-size(@i) when (ispixel(@i)), (ispercentage(@i)), (isem(@i)), (@i = auto) and not (isunit(@i,rem)) and not (@i = n) {
font-size: @i;
}

.font-size(@i) when not (ispixel(@i)) and not (ispercentage(@i)) and not (isem(@i)) and not (isunit(@i,rem)) and not (@i = auto) and (@unit = rem) and not (@i = n) {
font-size: unit(@i,px);
font-size: unit(@i/10,rem);
}

.font-size(@i) when not (ispixel(@i)) and not (ispercentage(@i)) and not (isem(@i)) and not (isunit(@i,rem)) and not (@i = auto) and not (@unit = rem) and not (@i = n) {
font-size: unit(@i,px);
}

对于我想要实现的目标来说,这似乎有点过分了......这可以更短吗?

编辑:Scotts 的答案正是我一直在寻找的,现在当我不想使用像“.margin(5,10,0,8px)”这样的 4 个值时,我调用所需的 4 个函数:.margin-top()、.margin-right()、...” 这可以正常工作,但渲染的 css 很长……我想知道什么是渲染的最佳方式css 简写:“margin: 0.5rem,1rem,0,8px;”。使用 Scotts 函数,我尝试为 2 个值制作示例:

.background-position(@x,@y) {

.runChecksx() when not (isnumber(@x)) {
@baseOutputx: @x;
}
.runChecksx() when (isnumber(@x)) {
@tempbaseOutputx: (@x * unit(1, @unit));
@passedRemx: isunit(@x, 'rem');
.checkRemx() when not (isunit(@tempbaseOutputx, 'rem')) and not (@passedRemx) {
@baseOutputx: (@x * unit(1, @unit));
}
.checkRemx() when (isunit(@tempbaseOutputx, 'rem')), (@passedRemx) {
@remBaseAdjx: unit(`(('@{unit}' == 'rem' & @{passedRemx} == true) ? 1 : 0.1)`);
@baseOutputx: unit((@x * @remBaseAdjx), rem);
}
.checkRemx();
}


.runChecksy() when not (isnumber(@y)) {
@baseOutputy: @y;
}
.runChecksy() when (isnumber(@y)) {
@tempbaseOutputy: (@y * unit(1, @unit));
@passedRemy: isunit(@y, 'rem');
.checkRemy() when not (isunit(@tempbaseOutputy, 'rem')) and not (@passedRemy) {
@baseOutputy: (@y * unit(1, @unit));
}
.checkRemy() when (isunit(@tempbaseOutputy, 'rem')), (@passedRemy) {
@remBaseAdjy: unit(`(('@{unit}' == 'rem' & @{passedRemy} == true) ? 1 : 0.1)`);
@baseOutputy: unit((@y * @remBaseAdjy), rem);
}
.checkRemy();
}


.runChecksx();
.runChecksy();


.checkFallback() when (isunit(@baseOutputx,rem)) and (isunit(@baseOutputy,rem)) {
background-position: @baseOutputx*10px @baseOutputy*10px;
}
.checkFallback() when (isunit(@baseOutputx,rem)) and not (isunit(@baseOutputy,rem)) {
background-position: @baseOutputx*10px @baseOutputy;
}
.checkFallback() when not (isunit(@baseOutputx,rem)) and (isunit(@baseOutputy,rem)) {
background-position: @baseOutputx @baseOutputy*10px;
}
.checkFallback() when not (isunit(@baseOutputx,rem)) and not (isunit(@baseOutputy,rem)) { }

.checkFallback();

background-position: @baseOutputx @baseOutputy;
}

使用 4 个值会使这个函数变得非常小,有什么更好的方法吗?

最佳答案

更新:字体大小调整

这可能在未来能够减少一些,但肯定有一个关于 rem 值的错误需要在当前(1.4.1)版本的 LESS 中解决。仍然有一些代码,但所有内容都包含在初始混合调用中。

LESS(默认单位为 rem 的测试用例)

@defaultUnit: rem;

.setFontSize(@i) {
.runChecks() when not (isnumber(@i)) {
@baseOutput: @i;
}
.runChecks() when (isnumber(@i)) {
@tempBaseOutput: (@i * unit(1, @defaultUnit));
@passedRem: isunit(@i, 'rem'); //a bug with rem required this extra step
.checkRem() when not (isunit(@tempBaseOutput, 'rem')) and not (@passedRem) {
//keeps passed in non-rem unit or sets to default when non rem
@baseOutput: (@i * unit(1, @defaultUnit));
}
.checkRem() when (isunit(@tempBaseOutput, 'rem')), (@passedRem) {
//keeps passed in rem unit and value
//or sets to a default rem unit but uses passed value for px value
@remBaseAdj: unit(`(('@{defaultUnit}' == 'rem' & @{passedRem} == true) ? 1 : 0.1)`);
@baseOutput: unit((@i * @remBaseAdj), rem);
font-size: unit(@i, px) * (10 * @remBaseAdj);
}
.checkRem();
}

.runChecks();
font-size: @baseOutput;
}

.test1 {
.setFontSize(5);
}
.test2 {
.setFontSize(5rem);
}
.test3 {
.setFontSize(5px);
}
.test4 {
.setFontSize(5%);
}
.test5 {
.setFontSize(5em);
}
.test6 {
.setFontSize(inherit);
}

CSS 输出

.test1 { /* i.e. unitless 5 with rem default unit */
font-size: 5px;
font-size: 0.5rem;
}
.test2 { /* i.e. passed in rem value */
font-size: 50px;
font-size: 5rem;
}
.test3 {
font-size: 5px;
}
.test4 {
font-size: 5%;
}
.test5 {
font-size: 5em;
}
.test6 { /* any string */
font-size: inherit;
}

关于javascript - Lesscss - 当数字没有单位时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17783454/

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