使用图像的文本渐变

时间:2013-05-28 08:16:33

标签: text css

这是如何仅为WebKit制作渐变文本,我是从HERE找到的!

h1 {
     font-size: 72px;
     background: -webkit-linear-gradient(#eee, #333);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
   }

有没有办法通过使用x重复的渐变图像来制作文本的颜色渐变?

2 个答案:

答案 0 :(得分:2)

是的,您可以使用渐变图像,只需将图像叠加在文本上

Demo

<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;
}

Credits

编辑:如果您对仅使用CSS解决方案感兴趣,我认为它将支持大多数浏览器

Demo

<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 );
}

答案 1 :(得分:0)

请按照以下两个链接:

第一个是在线创建CSS渐变的工具 http://www.colorzilla.com/gradient-editor/

第二个是MS工具,用于在IE9 +中创建数据urn svg渐变 http://ie.microsoft.com/testdrive/graphics/svggradientbackgroundmaker/default.html

将两者结合起来(最好与modernizr.com合并),你可能拥有你想要的东西(取决于渐变的复杂程度)