首页 前端知识 css设置文字渐变色

css设置文字渐变色

2024-06-14 09:06:22 前端知识 前端哥 131 367 我要收藏

css文字渐变色

设置class="text"的文字渐变色。

主要使用 background-clip: text;-webkit-background-clip: text; 这两个属性来实现文字的渐变

<body>
    <span class="text">文字渐变</span>
</body>

1.普通渐变。

普通渐变

<style>
.text {
    background: linear-gradient(to right, #ff0000, #0000ff, #00ff00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
</style>

2.设置颜色终止位置的渐变。

在这里插入图片描述

<style>
.text {
    background: linear-gradient(to right, #ff0000 30%, #00ff00 60%, #0000ff 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
</style>

3.多个颜色分明的渐变。

设置两个颜色的终止位置相同来设置文字左右两部分不相同的颜色。

在这里插入图片描述

.text {
    background: linear-gradient(to right, #ff0000 50%, #0000ff 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

设置一个颜色的起始位置和终止位置来设置文字各部分不相同的颜色。

在这里插入图片描述

<style>
.text {
    background: linear-gradient(to right, #ff0000 20%, #00ff00 30% 45%, #0000ff 55% 70%, #ffff00 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
</style>

4.也可使用背景图片作为文字的前景色。

在这里插入图片描述

.box {
    background-image: url('./testbak.jpeg');
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 68px;
    font-weight: bold;
}

注:该效果可能存在兼容性问题。可在https://caniuse.com查询兼容性问题。

转载请注明出处或者链接地址:https://www.qianduange.cn//article/12058.html
标签
评论
发布的文章

JQuery函数 | 选择器 | 事件

2024-06-20 00:06:11

双X轴的Echarts图

2024-06-20 00:06:08

在Vue3中使用echarts图表

2024-06-20 00:06:07

将echarts封装为js文件

2024-06-20 00:06:04

利用Echarts画地图和飞线

2024-06-20 00:06:03

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!