相关文章推荐
耍酷的草稿本  ·  GitHub - ...·  4 月前    · 
低调的绿茶  ·  梁寅峰_百度百科·  5 月前    · 
function




    
 moneyColorChange(){
    const root = document.querySelector(':root');
    // 获取 :root 上 --money-color 变量的值
    const color = getComputedStyle(root).getPropertyValue('--money-color').trim();
    // 设置 :root 上 --money-color 变量的值
    root.style.setProperty('--money-color', color === 'red' ? 'blue' : 'red');
复制代码
分类:
前端
  •