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

大家讲道理
大家讲道理

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

全部回复(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>
黄舟

雷雷 雷雷

Peter_Zhu

@media all 和 (-webkit-min-device-pixel-ratio:0) 和(最小分辨率:.001dpcm){

雷雷

}
@-webkit-keyframes 蒙版动画 {

雷雷

}

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板