如何在图像中的CSS中添加具有不透明度的颜色?

时间:2018-02-08 18:48:19

标签: html css image colors

图像是方形的,但中间有一个圆圈,方块的其余部分是透明的。 我正在使用

opacity: 0.86

但我想要的是在图像前面设置一种颜色。类似的东西

color: rgba (247, 172, 8, 0.86);

我希望图像是那种颜色,并且前面有不透明度。比如添加一个带有颜色"

的"层

enter image description here

1 个答案:

答案 0 :(得分:0)

这将有助于您的需求。

希望它有效

select pt, min(treatment_date), max(treatment_date), . . .
from (select t.*,
             row_number() over (partition by pt order by treatment_date) as seqnum_p,
             row_number() over (partition by pt, treatment order by treatment_date) as seqnum_ptt
      from t
     ) t
group by pt, (seqnum_p - seqnum_ptt);
.circle {
  width: 150px;
  height: 150px;
  background: rgba(247, 172, 8, 0.86);
  border-radius: 50%;
  z-index: 3;
  position: absolute;
  top: 0;
}

.image {
  position: absolute;
  top: 0;
}