这是只为 WebKit 制作渐变文本的方法,我是从这里找到的!
h1 {
font-size: 72px;
background: -webkit-linear-gradient(#eee, #333);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
有没有办法通过使用 x-repeated 渐变图像来制作文本的颜色渐变?
是的,您可以使用渐变图像来做到这一点,只需将图像覆盖在文本上
<div class="gradient1">
<h1><span></span>CSS Gradient Text</h1>
</div>
.gradient1 h1 {
font: bold 330%/100% "Lucida Grande", Arial, sans-serif;
position: relative;
margin: 30px 0 50px;
color: #464646;
}
.gradient1 h1 span {
background: url(http://i.stack.imgur.com/nrgB0.png) repeat-x;
position: absolute;
display: block;
width: 100%;
height: 31px;
}
编辑:如果您对仅使用 CSS 解决方案感兴趣,我认为它将支持大多数浏览器
<span>Isn't this awesome?</span>
span {
position:relative;
font-size: 30px;
}
span:after {
content: "";
display:block;
position:absolute;
top:0;
left:0;
height:100%;
width:100%;
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0)));
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
}
按照这两个链接:
第一个是在线创建 CSS 渐变的工具 http://www.colorzilla.com/gradient-editor/
第二个是 MS 工具,用于创建数据 urn svg 渐变以在 IE9+ 中使用 http://ie.microsoft.com/testdrive/graphics/svggradientbackgroundmaker/default.html
将两者结合起来(最好使用modernizr.com),你可能会得到你想要的(取决于渐变的复杂程度)