是否可以使用 CSS3 和 CSS3 实现类似于 Cufon 的文本渐变? @字体脸?
使用@font-face和CSS3我想模拟线性渐变,您可以使用Cufon在文本上实现
颜色:'-线性渐变(#7f7f7f,#616161)',
我有 webkit 规则
-webkit-gradient(线性, 0% 0%, 0% 100%, 从(#7F7F7F), 到(#616161));
但似乎无法使用颜色:选择器或任何其他变体将其应用于文本。有办法做到这一点吗?
Using @font-face and CSS3 I want to simulate the linear gradient that you can achieve on text using Cufon
color: '-linear-gradient(#7f7f7f, #616161)',
I have the webkit rule
-webkit-gradient(linear, 0% 0%, 0% 100%, from(#7F7F7F), to(#616161));
but can't seem to get it to apply to the text using the color: selector or any other variation. Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,有一种方法可以在 webkit 浏览器中做到这一点。请参阅本教程 http:// net.tutsplus.com/tutorials/html-css-techniques/quick-tip-pure-css-text-gradients/
Yes there is a way to do it in webkit browsers. See this tutorial http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-pure-css-text-gradients/