js 获取伪类和css变量

  • Post author:
  • Post category:其他




获取css变量

getComputedStyle(document.documentElement)
    .getPropertyValue('--primary-color'); 



设置css变量

document.body.setProperty('--primary-color','#fff');



获取伪类元素

var dom = getComputedStyle(document.body, '::before');



版权声明:本文为qq_33051709原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。