赞
踩
:root {
--primary-color: blue;
}
.button {
background-color: var(--primary-color);
}
// 切换主题
function changeTheme(color) {
document.documentElement.style.setProperty('--primary-color', color);
}
.theme-dark .button {
background-color: black;
}
.theme-light .button {
background-color: white;
}
// 切换主题
function changeTheme(theme) {
document.documentElement.className = theme;
}
<!DOCTYPE html>
<html>
<head>
<link id="theme" rel="stylesheet" href="dark-theme.css">
</head>
<body>
<!-- 页面内容 -->
</body>
</html>
// 切换主题
function changeTheme(theme) {
document.getElementById('theme').href = theme + '-theme.css';
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。