透明颜色的十六进制代码是什么?
我想将颜色设置为透明。 在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
不存在这样的事;透明度是通过另一个渠道完成的。
There is no such thing; transparency is done via another channel.
这取决于格式,有些系统需要 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.
你也可以使用 #00000000
我发现使用 #1C00ff00 后也有效
You can also use #00000000
I found that after using #1C00ff00 which also worked
对我来说,它使用的格式是
#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.您可以使用rgba(255,0,255,1),
这里是fiddle
You can use rgba(255,0,255,1)
here is fiddle