gpt4 book ai didi

css - 为 PNG 上的 webkit mask 使用颜色

转载 作者:行者123 更新时间:2023-11-28 12:22:46 25 4
gpt4 key购买 nike

我知道如何通过使用图像来做到这一点,但它需要动态变化。使用颜色代替图像有什么技巧吗?关于使用 webkit 掩码的文档似乎很少。

我在可以离线使用的 Chrome 扩展程序中使用它(即我不能为此使用 PHP)。

最佳答案

您可以使用带有彩色背景的伪元素,如 http://www.impressivewebs.com/image-tint-blend-css/ 中的示例

.tint {
position: relative;
float: left;
cursor: pointer;
}

.tint:before {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 255, 255, 0.5);
-moz-transition: background .3s linear;
-webkit-transition: background .3s linear;
-ms-transition: background .3s linear;
-o-transition: background .3s linear;
transition: background .3s linear;
}

.tint:hover:before {
background: none;
}
<figure class="tint">
<img src="/image/e2VAF.jpg" alt="Example" width="400" height="260">
</figure>

关于css - 为 PNG 上的 webkit mask 使用颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12030150/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com