透明颜色的十六进制代码是什么?

发布于 2024-08-12 10:09:23 字数 91 浏览 2 评论 0原文

我想将颜色设置为透明。 在 RGB 255 0 255 和 alpha 5 中可能是透明的,但是如何在 HEX 中得到它?

透明颜色的十六进制代码是什么

I want to set color as transparent.
In RGB 255 0 255 with alpha 5 may work as transparent, But How to get it in HEX ?

What is the HEX code for Transparent color

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

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

发布评论

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

评论(5

尾戒 2024-08-19 10:09:23

不存在这样的事;透明度是通过另一个渠道完成的。

There is no such thing; transparency is done via another channel.

情魔剑神 2024-08-19 10:09:23

这取决于格式,有些系统需要 RRGGBB,其中不包括 alpha。

有些格式为 AARRGGBB,因此您提供的颜色将为 05FF00FF。

相反,有些的格式为 RRGGBBAA,因此您提供的颜色将为 FF00FF05。

It depends on the format, some systems require RRGGBB, which doesn't include alpha.

Some have their format as AARRGGBB, so your provided color would be 05FF00FF.

Conversely, some have their format as RRGGBBAA, thus your provided color would be FF00FF05.

两个我 2024-08-19 10:09:23

你也可以使用 #00000000

我发现使用 #1C00ff00 后也有效

You can also use #00000000

I found that after using #1C00ff00 which also worked

柠檬色的秋千 2024-08-19 10:09:23

对我来说,它使用的格式是#AARRGGBB,所以对我有用的是#1C00ff00。尝试一下,因为我见过它对某些人有效,但对其他人无效。我在 CSS 中使用它。

For me it worked using the format #AARRGGBB so the one working for me was #1C00ff00. Give it a try, because I have seen it working for some and not working for someone else. I am using it in CSS.

↘人皮目录ツ 2024-08-19 10:09:23

您可以使用rgba(255,0,255,1)

 <svg class="svg_element" style="margin-top:0px;margin-left:560px">
        <circle cx="25" cy="25" r="20" fill="rgba(128, 0, 128, 0.75)" 
            stroke="rgba(0, 255, 0, 0.25)" stroke-width="10"/>
        <circle cx="75" cy="25" r="20"
            fill="rgba(0, 255, 0, 1)"
            stroke="rgba(0, 0, 255, 0.1)" stroke-width="10"/>
        <circle cx="125" cy="25" r="20"
            fill="rgba(255, 255, 0, 0.75)"
            stroke="rgba(255, 0, 0, 0.25)" stroke-width="10"/>
 </svg>

这里是fiddle

You can use rgba(255,0,255,1)

 <svg class="svg_element" style="margin-top:0px;margin-left:560px">
        <circle cx="25" cy="25" r="20" fill="rgba(128, 0, 128, 0.75)" 
            stroke="rgba(0, 255, 0, 0.25)" stroke-width="10"/>
        <circle cx="75" cy="25" r="20"
            fill="rgba(0, 255, 0, 1)"
            stroke="rgba(0, 0, 255, 0.1)" stroke-width="10"/>
        <circle cx="125" cy="25" r="20"
            fill="rgba(255, 255, 0, 0.75)"
            stroke="rgba(255, 0, 0, 0.25)" stroke-width="10"/>
 </svg>

here is fiddle

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