如何使图像半透明?
假设我有一个黑色圆圈 PNG 图像。 (透明背景,中间黑色圆圈)
我想将这个黑色圆圈放在一些文本的顶部,但我想让它半透明。我怎样才能在 CSS 或 Photoshop 中做到这一点?或者什么?
Suppose I have an image that is a black circle PNG. (transparent background, black circle in middle)
I want to place this black circle on top of some text, but I want to make it semi-transparent. How can I do that in CSS, or photoshop? Or what?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我可以这样做。
查看 jsFiddle 的工作示例
http://jsfiddle.net/MxQTz/2/
HTML
CSS
Here's how I might do it.
See a working example at jsFiddle
http://jsfiddle.net/MxQTz/2/
HTML
CSS
在 CSS 中只需使用:
需要是 0-1 的值。 0 是完全透明,1 是不透明,0.5 是平均。 :)
In CSS just use:
Needs to be a value 0-1. 0 is completely transparent, 1 is opaque, 0.5 would be average. :)
将 jQuery 放在您的网站上并编写以下内容:
Put jQuery on your site and write this:
您可以使用 css 属性 opacity = 0.5;过滤器:IE 为 alpha 50;
you can use css property opacity = 0.5; filter:alpha 50 for IE;
在 Photoshop 中,将圆圈保留在文本图层上方。然后选择圆形图层&在图层选项中通过拖动滑块来降低其透明度。或者只需按键盘数字键盘上的数字 0= 完全不透明,9=10% 不透明度 &很快....
In photoshop keep the circle above the text layer. then select the circle layer & in layer options reduce its transparency by dragging the slider. OR simply press numbers on the num pad of keyboard 0= full opaque, 9=10 % opacity & so on....