用于属性值的 SASS 函数/mixin

发布于 2024-12-27 15:39:52 字数 333 浏览 1 评论 0原文

这是一个 mixin 示例:

=border($alpha: 0.2)
    1px solid hsla(0, 0, 0, $alpha)

我想使用函数/mixins 来实现如下功能:

border-right: +border(0.2)

这将编译为:

border-right: 1px Solid hsla( 0, 0, 0, 0.2)

我还没有看到任何关于如何使用函数/混合来动态计算属性值的文档。我只看到它们在包含财产时才被使用。如何才能实现这一目标?

Here's an example mixin:

=border($alpha: 0.2)
    1px solid hsla(0, 0, 0, $alpha)

I want to use functions/mixins to achieve something like this:

border-right: +border(0.2)

This will compile into:

border-right: 1px solid hsla(0, 0, 0, 0.2)

I have not seen any documentation on how to use functions/mixins to dynamically calculate property values. I have only seen them used when they include the property as well. How could this be achieved?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆凄美了谁 2025-01-03 15:39:52

您可以像这样编写函数:

@function border($alpha: 0.2)
  $border: 1px solid hsla(0, 0, 0, $alpha)
  @return $border

并像任何其他 sass/compass 函数一样应用它们:

border-right: border(0.2)

You can write functions like this:

@function border($alpha: 0.2)
  $border: 1px solid hsla(0, 0, 0, $alpha)
  @return $border

and apply them like any other sass/compass function:

border-right: border(0.2)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文