vue动态设置::before伪元素样式背景颜色

762 阅读1分钟

通过动态绑定style,声明css变量"--bgColor",把变量”color”赋给“--bgColor”

<div ref="chart-circle" class="chart-circle" :style="{ '--bgColor': color }"></div>

在css中使用 var函数 读取“--bgColor”变量

.chart-circle {
  width: 80px;
  height: 80px;
  position: relative;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bgColor);
  }
}