CSS3下的文字渐变效果方法一实例页面

展示

回到相关文章 »

天赐美妞

代码

CSS代码:
.text-gradient {  
    display: inline-block;
    font-family: '微软雅黑';
    font-size: 10em;
    position: relative; 
}  
  
.text-gradient[data-text]::after {  
    content: attr(data-text);  
    color: green;  
    position: absolute;  
    left: 0;  
    z-index: 2;
    -webkit-mask-image: -webkit-gradient(linear, 0 0, 0 bottom, from(#ff0000), to(rgba(0, 0, 255, 0)));
}
            
HTML代码:
<h2 class="text-gradient" data-text="天赐美妞">天赐美妞</h2>