gpt4 book ai didi

css - 类型问题制作线性渐变混合 : Expected a color. 得到:#d9d9d9 55%

转载 作者:行者123 更新时间:2023-11-28 05:31:21 25 4
gpt4 key购买 nike

我目前正在尝试使用此处描述的精简版 SASS mixin,它有助于实现线性渐变:https://www.sitepoint.com/building-linear-gradient-mixin-sass/

我的精简版:

// @param {Keyword | Angle} $direction - Linear gradient direction
// @param {Arglist} $color-stops - List of color-stops composing the gradient
@mixin linear-gradient($direction, $color-stops...) {
// Direction has been omitted and happens to be a color-stop
@if is-direction($direction) == false {
$color-stops: $direction, $color-stops;
$direction: 180deg;
}

background: nth(nth($color-stops, 1), 1);
background: linear-gradient($direction, $color-stops);
}
// Test if `$value` is a valid direction
// @param {*} $value - Value to test
// @return {Bool}
@function is-direction($value) {
$is-keyword: index((to top, to top right, to right top, to right, to bottom right, to right bottom, to bottom, to bottom left, to left bottom, to left, to left top, to top left), $value);
$is-angle: type-of($value) == 'number' and index('deg' 'grad' 'turn' 'rad', unit($value));

@return $is-keyword or $is-angle;
}

当我使用它时,像这样:

@include linear-gradient(#ededed 54%, #d9d9d9 55%);

我收到语法错误:

Expected a color. Got: #ededed 54%

我认为问题出在这一行:

$color-stops: $direction, $color-stops;

因为我注意到以这种方式使用它时效果很好:

@include linear-gradient(to top, #fff 50%, #f0f0f0 51%);

我相信我已经解决了它是一个类型问题,但似乎无法弄清楚如何解决它。

最佳答案

我相信我找到了解决方案。

首先,我通过添加以下内容快速测试了 $color-stops 的当前输出:

  &:after {
@each $color in $color-stops {
content: type_of($color);
}
}

这证实了我的担忧,因为它输出了两种不同的类型,在它通过这段代码运行的场景中:

$color-stops: $color-stops, $direction;

输出:

content: arglist; content: list;

最终,我发现解决这个问题的方法是改变我附加 $direction 变量的方式。

更改:

$color-stops: $direction, $color-stops;

收件人:

$color-stops: append($color-stops, $direction);

现在我的测试代码输出:

content: list; content: list;

不再出错。

关于css - 类型问题制作线性渐变混合 : Expected a color. 得到:#d9d9d9 55%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38492831/

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