gpt4 book ai didi

html - 如何在图像上放置透明彩色纸?

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

有一张图片看起来像:

enter image description here

这张图片的副本看起来像:

enter image description here

我怎样才能在图像上放一张透明的蓝色纸?我试过这个:

<img src="bg2.jpg" style="background-color:rgba(34,70,118,0.7);" /> 

但是没有用。我该怎么做?

最佳答案

我猜是这样的

<div class="image-holder">
<img src="http://i.stack.imgur.com/vqpYb.jpg">
<div class="overlay"></div>
</div>

.image-holder {
position: relative;
float: left;
}
.overlay {
background-color:rgba(34,70,118,0.7);
position: absolute;
width: 100%;
height: 100%;
top: 0;
z-index: 2;
}

http://jsfiddle.net/84L1cvmw/

关于html - 如何在图像上放置透明彩色纸?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25347989/

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