纯 CSS3 文本颜色渐变 - 可能吗?
有没有办法创建跨浏览器的纯CSS3文本颜色渐变?
所以,没有png。只有“webkit”。
编辑:更准确地说:它仅适用于 CSS3,并且适用于文本,而不适用于框渐变。
编辑:我发现这个解决方案,但它仅适用于webkit。
Is there a way to create a cross-browser, pure CSS3 text color gradient?
So, no png's. No 'webkit' only.
EDIT: To be more precise: It's CSS3 only, and it's for text, not box gradients.
EDIT: I found this solution, but it's only for webkit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 webkit 之外没有跨浏览器的方法来执行此操作,因为当前只有 webkit 有 background- Clip:文本,并且这个background-clip扩展不在标准轨道上(就我知道)。如果您想放宽 CSS3 要求,您可以使用 Canvas(或 SVG)实现相同的跨浏览器效果,但您谈论的只是支持 HTML5 的浏览器。
There is no cross-browser way to do this outside webkit because only webkit currently has a background-clip: text, and this extension to background-clip is not on standards track (as far as I am aware). If you want to relax your CSS3 requirement, you can accomplish the same effect cross-browser with Canvas (or SVG), but then you're talking about HTML5-capable browsers only.
目前还没有“纯”CSS 方式,但有一种使用 CSS 和一些内容重复的方式。请参阅我的服务器端 CSS 渐变文本解决方案,它不需要 JavaScript 或纯背景。
您还可以使用 JavaScript 来完成此客户端操作,请在此处查看 Dragonlabs 所做的事情。
There is no "pure" CSS way at the moment, but there is a way using CSS and some duplication of content. See my server side css gradient text solution here, which doesn't require JavaScript or plain background.
You can also do this client side using JavaScript, see what Dragonlabs has done here.
正如我已经在 zzzzBov 的回复中作为评论指出的那样,有一种方法可以仅在 CSS3 中实现文本渐变。
如果您进一步采用 PNG 解决方案,您可以执行以下操作: css3 渐变也有同样的技巧。
当然,这仅适用于具有统一背景颜色的文本。
As I've already pointed out as a comment in zzzzBov's response, there is a way to achieve a text gradient in CSS3 only.
If you take the PNG solution a bit further, you can do the same trick with css3 gradients.
Of course this does only work for text that is on a uniform background color.
目前最好的解决方案是使用纯色作为非 webkit 后备,然后使用以下技术(需要 webkit ):
Best solution at the moment is to use a solid color as non-webkit fallback and then use the following technique ( requires webkit ):