root.style.setProperty('--theme-color1', themeObj.list[0])
{
const style = document.createElement('style');
style.textContent = `
:root {
--theme-color1: ${themeObj.list[0]};
--theme-color2: ${themeObj.list[1]};
}
`;
document.head.appendChild(style);
}
上方两种都是不可行的
Azikou
哥,你能展开说说,写个大致的示例嘛。。我这个变量问题纠结好几天了。
2024-08-21 08:53