css 图像上有白色条纹?

发布于 2024-12-29 11:05:05 字数 196 浏览 0 评论 0原文

我需要在图像上制作白色条纹,就像标题图像上的 this 一样,有儿童的,有一些白色条纹。相同的白色条纹可以显示在下面的可持续发展报告图像上。尽管他们使用的是带有这些条纹的图像。知道如何在 css 或 css3 中使用任何图像实现它。

I need to make white stripes on an image Like this on header image there are children's and there is some white stripe. same white stripes can be show on below sustainability report image.Although they are using image which had these stripes. Any idea how it can be implement in css or css3 with any image.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

脸赞 2025-01-05 11:05:05

这个或它的某些变体应该可以工作:

HTML:

<div class="image"><img src="whatever-you-like.gif"><div></div></div>

CSS:

.image { position: relative; }
.image div { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(stripes.png); }

Stripes.png 必须是具有较低 alpha 值的 24 位 PNG 图像。

请注意,在此实现中,您不必使用原始图像作为 CSS 背景,您可以像平常一样使用图像标签(只需在其周围添加一些额外的 HTML)。

This or some variant of it ought to work:

HTML:

<div class="image"><img src="whatever-you-like.gif"><div></div></div>

CSS:

.image { position: relative; }
.image div { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(stripes.png); }

Stripes.png must be a 24-bit PNG image with a low alpha value.

Note that in this implementation you don't have to use your original image as a CSS background, you can use the image tag as normal (just with some extra HTML around it).

所谓喜欢 2025-01-05 11:05:05

您可以使用原始图像作为背景,并在其顶部使用具有这些叶柄和透明度的 .png 图像。

You can use your original image as a background, and on top of it use .png image with these stipes and transparency.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文