css3 - 如何实现字体颜色渐变?
大家讲道理
大家讲道理 2017-04-17 11:58:19
0
3
1079

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全員に返信(3)
Ty80

先看效果

方法一

直接用photoshop cc画出来,图层单击右键可复制SVG或者CSS样式。

方法二

思路:先设置背景色渐变——规定背景的划分区域——保险一点再设置(text-fill- color会覆盖color所定义的字体颜色)

/* 这个文字效果只在webkit内核的浏览器上才能正常工作。Firefox 浏览器不支持在文字上使用background-clip属性 */

h1.start-gradient {
  font-weight: bold;
  font-family: helvetica;
  text-align:center;
  background: -webkit-linear-gradient(left, #4f185d , #fe5d4b);     /* 背景色渐变 */
  -webkit-background-clip: text;         /* 规定背景的划分区域 */
  -webkit-text-fill-color: transparent;  /* 防止字体颜色覆盖 */
}

<h1 class="start-gradient">快速开始</h1>
いいねを押す +0
黄舟
<span class="gradient">快速开始</span>
.gradient {  
    display: inline-block;
    font-size: 60px;
    font-family: 'microsoft yahei';
    background-image: -webkit-gradient(linear, left center, right center, from(rgba(176, 31, 184, 1)), to(rgba(255, 89, 76, 1)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}; 
いいねを押す +0
Peter_Zhu

@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {

.masked{
    background-image: -webkit-linear-gradient(left, #147B96, #E6D205 25%, #147B96 50%, #E6D205 75%, #147B96);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-background-size: 200% 100%;
    -webkit-animation: masked-animation 4s infinite linear;
}

}
@-webkit-keyframes masked-animation {

0%  { background-position: 0 0;}
100% { background-position: -100% 0;}

}

いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート