css文字渐变色

设置class=”text“的文字渐变色

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

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

1.普通渐变。

普通渐变

<style&gt;
.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://blog.csdn.net/weixin_43358289/article/details/131791118

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_40396.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注