js操作css变量(属性)

前端页面一键切换主题色

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<style type="text/css">
:root {
--bg: white;
}

body {
background-color: var(--bg);
}
</style>
</head>
<body>
<button type="button" id="red"></button>
<button type="button" id="blue"></button>
<button type="button" id="green">绿</button>


<script type="text/javascript">
["red", "blue", "green"].forEach(value => {
const btn = document.getElementById(`${value}`);
btn.addEventListener("click", () => {
document.body.style.setProperty("--bg", value);
});
});
</script>
</body>
</html>

js操作css变量(属性)
https://github.com/chergn/chergn.github.io/47e23576f103/
作者
全易
发布于
2024年3月28日
许可协议