JavaScript 如何将十六进制转换为RGBA值
在设计网页时,我们使用颜色使网页更具吸引力和参与性。通常我们使用十六进制代码表示颜色,但有时我们需要为颜色添加透明度,这可以通过RGBA值实现。
十六进制颜色值表示为 #RRGGBBAA
,RGBA颜色值表示为 rgba(红色, 绿色, 蓝色, 透明度)
。以下是一些RGBA和十六进制值的示例:
Input: #7F11E0
Output: rgba( 127, 17, 224, 1 )
Input: #1C14B0
Output: rgba( 28, 20, 176, 1 )
在这篇文章中,我们将讨论使用Javascript将十六进制转换为RGBA的多种方法。
- 使用parseInt和String.substring方法
-
使用数组解构和正则表达式
使用ParseInt和String.substring方法
parseInt()函数接受两个参数:一个表示数字的字符串和一个表示进制的数字。它将字符串转换为指定进制的整数并返回结果。
String.substring方法用于通过指定的起始和结束位置提取字符串的一部分。
将HEX转换为RGBA的步骤如下:
1. 使用String.substring方法略去#号,并逐一提取十六进制字符串的每一对字符。
2. 提取后,使用parseInt方法将每一对转换为整数。由于这些对是十六进制代码,所以我们需要将16作为parseInt的第二个参数传入。
3. 将每一对Hex代码转换为整数后,将它们连接成RGBA格式。
示例: 在这个示例中,我们将十六进制代码转换为RGBA格式。
<!DOCTYPE html>
<html>
<head>
<title>Convert Hex to RGBA value using JavaScript</title>
</head>
<body>
<h3>Converting Hex to RGBA value parseInt() and String.substring() methods</h3>
<p id="input"> Hex Value: </p>
<p id="output"> RGBA Value: </p>
<script>
let hex = "#7F11E0";
let opacity = "1";
// Convert each hex character pair into an integer
let red = parseInt(hex.substring(1, 3), 16);
let green = parseInt(hex.substring(3, 5), 16);
let blue = parseInt(hex.substring(5, 7), 16);
// Concatenate these codes into proper RGBA format
let rgba = ` rgba({red},{green}, {blue},{opacity})`
// Get input and output fields
let inp = document.getElementById("input");
let opt = document.getElementById("output");
// Print the values
inp.innerHTML += hex;
opt.innerText += rgba;
</script>
</body>
</html>
使用Array.map()和String.match()方法
JavaScript数组map()方法通过对数组中的每个元素调用提供的函数来创建一个新数组。
String.match方法用于在与正则表达式匹配的字符串中检索匹配项。
要将HEX转换为RGBA,我们需要执行以下步骤。
- 使用正则表达式/ \w\w/g 和String.match方法来匹配HEX字符串中每个连续两个字母数字字符的序列。
-
会得到一个数组中的三对字母数字字符,然后使用Array.map和parseInt方法将这些字符转换为整数。
示例
在这个示例中,我们将HEX代码转换为RGBA。
<!DOCTYPE html>
<html>
<head>
<title>Converting Hex to RGBA value using JavaScript</title>
</head>
<body>
<h3>Convert Hex to RGBA value using Array.map() and String.match() methods</h3>
<p id="input"> Hex: </p>
<p id="output"> RGBA: </p>
<script>
let hex = "#7F11E0";
let opacity = "1";
// Use a regular expression to extract the individual color values from the hex string
let values = hex.match(/\w\w/g);
// Convert the hex color values to decimal values using parseInt() and store them in r, g, and b
let [r, g, b] = values.map((k) => parseInt(k, 16))
// Create the rgba string using the decimal values and opacity
let rgba = ` rgba( {r},{g}, {b},{opacity} )`
// Get input and output fields
let inp = document.getElementById("input");
let opt = document.getElementById("output");
// Print the values
inp.innerHTML += hex;
opt.innerText += rgba;
</script>
</body>
</html>