如何使用 CSS3 设置 img 样式

发布于 2024-10-07 07:25:52 字数 207 浏览 3 评论 0原文

是否可以更改例如 的第一个图标的背景颜色这个网站使用 CSS3 或 WebKit 的 CSS 扩展?

我对此很陌生,希望得到一些帮助。一个链接或一个例子就很好了。

先感谢您。

is it possible to change the background-color of e.g. the first icon of this site with CSS3, or WebKit’s CSS extensions?

I'm new to this and would appreciate some help. A link or an example would be great.

Thank you in advance.

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

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

发布评论

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

评论(4

装迷糊 2024-10-14 07:25:52

虽然您可以设置图像的样式,但在 CSS3 中更改图标的颜色是不可能的,因为它需要混合模式。

您可以通过 HTML5 Canvas

// Color

var over  = someCanvas.getContext('2d');

// Icon
var under = anotherCanvas.getContext('2d');

over.blendOnto( under, 'screen', {destX:30,destY:15} );

使用 https://github.com/Phrogz/context-blender 来实现此目的为了实现这一目标。

Although you can style an Image, but changing color of Icon is not possible in CSS3 as it requires Blending modes.

You can achieve this with HTML5 Canvas

// Color

var over  = someCanvas.getContext('2d');

// Icon
var under = anotherCanvas.getContext('2d');

over.blendOnto( under, 'screen', {destX:30,destY:15} );

use https://github.com/Phrogz/context-blender for achieving this.

孤单情人 2024-10-14 07:25:52

如果图标图像具有透明背景,那么您可以像这样设置图像后面的 CSS 背景颜色:

background: #c00 url(kombine-iphone-icons.png); /* Puts a red background behind the icon image */

不幸的是,CSS 3(或任何 WebKit 的 CSS 扩展)中没有任何内容可以让您更改图像的颜色。

If the icon image had a transparent background, then you could set the CSS background colour behind the image like this:

background: #c00 url(kombine-iphone-icons.png); /* Puts a red background behind the icon image */

Unfortunately, there’s nothing in CSS 3 (or any of WebKit’s CSS extensions) that lets you change the colour of images.

孤云独去闲 2024-10-14 07:25:52

尝试

img {
  background-color: #FF00FF;
}

Try

img {
  background-color: #FF00FF;
}
泅人 2024-10-14 07:25:52

是的,您可以使用 css3 设置图像样式。但有些事情告诉我,你的问题实际上比看起来更具体。

Yes, you can style an image with css3. But something tells me that you question is actually more specific that it looks like..

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