gpt4 book ai didi

javascript - 使用 javascript 将 css 系统颜色转换为十六进制?

转载 作者:行者123 更新时间:2023-11-28 02:13:03 24 4
gpt4 key购买 nike

是否可以获取这些颜色的颜色名称的十六进制或 rgb 值?

http://artific.com/library/css-2-system-colors.html

例如,我将一个 div 设置为使用“windowFrame”作为背景色。我可以使用:

https://developer.mozilla.org/en/DOM/window.getComputedStyle不知何故?

最佳答案

getComputedStyle 似乎有效。

Firebug 输出(处理 http://artific.com/library/css-2-system-colors.html ):

var t = document.getElementsByClassName("window")[0]; window.getComputedStyle(t).backgroundColor;
"rgb(255, 255, 255)"

>>> var t = document.getElementsByClassName("menu")[0]; window.getComputedStyle(t).backgroundColor;
"rgb(240, 240, 240)"

>>> var t = document.getElementsByClassName("info")[0]; window.getComputedStyle(t).backgroundColor;
"rgb(225, 225, 225)"

关于javascript - 使用 javascript 将 css 系统颜色转换为十六进制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7074291/

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