【Vue_10】渐变色文字
实现渐变色文字的原理,将背景色改为渐变,然后将背景剪裁出文字,最后将文字隐藏 一. CSS 样式示例 /* 将背景设为渐变 */ background-image: -webkit-linear-gradient(top, white, #a4a4a4, #6a6b6b); /* 规定背景绘制区域 */ -webkit-background-clip: text; /* 将文字隐藏 */ -webkit-text-fill-color: transparent; 二. 属性详解 1. linear-gradient linear-gradient() 函数用于创建一个线性渐变的 "图像"。 浏览器支持 语法 /* direction: 方向;color-stop: 颜色 */ background-image: linear-gradient(direction, color-stop1, color-stop2, ...); 示例 /* 从左侧开始的线性渐变,从红色开始,转为黄色 */ background-image: linear-gradient(to right, red , yellow); /* 从左上角到右下角的线性渐变 */ background-image: linear-gradient(to bottom right, red , yellow); 2.