CSS 3 浅色文本阴影
是否可以
具有与此图像相同的文本效果(内阴影、阴影):
使用 CSS3 ,又如何?
Is it possible to have the same text effect (inner shadow, shade) as this image:
using CSS3, and how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
仅限 WebKit (Safari/Chrome):
在这里您可以看到上面的代码片段在 JsFiddle 中: http://jsfiddle.net/HkTqe/6/
火狐浏览器和WebKit:
请注意,您必须按此顺序拥有两个具有相同文本内容的 div;否则它不会起作用。
两种技术的比较:http://jsfiddle.net/bABuM/
WebKit-only (Safari/Chrome):
Here you can see above snippet in JsFiddle: http://jsfiddle.net/HkTqe/6/
Firefox & WebKit:
Note that you must have two div's in that order, with the same textual content; else it won't work.
Comparison of both techniques: http://jsfiddle.net/bABuM/
不一定,但你可以尝试各种近似。有关大量示例,请参阅这篇文章:
Not really, but you can try various almosts. See this post for lots of examples:
您也可以使用
-webkit-mask-image
创建它 - 但它又只能在 webkit 浏览器中工作。您需要在 prohotshop 中创建透明的多云图像(您想要它的外观方式 - 我刚刚做了渲染/云并使用 aplha 通道对其进行了转换 - 通过稍微调整它,您可以实现与您的设计中相同的外观效果)然后将其应用为蒙版并将蒙版剪辑到文本上。 Webkit 对此非常有用,但 sux 因为并非所有浏览器都支持它。目前无法使用 css3 创建完全相同的效果
http://jsfiddle。净/easwee/VMSD6/2/
You could also create it using
-webkit-mask-image
- but it will again work only in webkit browsers. You need to crate the transparent cloudy image in prohotshop (the way you want it to look - i just did a render/clouds and transformed it using aplha channel - by tweaking it a bit you could achieve the same looking effect as in your design) and than apply it as mask and clip the mask to text. Webkit is wonderful for this but sux since it's not supported in all browsers.Creating that exact same effect with css3 is currently not possible
http://jsfiddle.net/easwee/VMSD6/2/