1、background 属性设置渐变

1、源码示例

.text {
	background-image: linear-gradient(to right, pink, purple);
	color: transparent;
	-webkit-background-clip: text;
}

渐变色效果图
2、实现原理
(1)backgroundimage :为该文字区域设置渐变背景色
语法backgroundimage: lineargradient(direction, colorstop1, colorstop2, …);
参数渐变方向、开始颜色、结束颜色

linear-gradient(blue, red);/* 默认从上到下,蓝色渐变到红色 */
linear-gradient(to left top, blue, red);/* 从右下到左上、从蓝色渐变到红色 */
linear-gradient(45deg, blue, red);/* 渐变轴为45度,从蓝色渐变到红色 */
linear-gradient(0deg, blue, green 40%, red);/* 从下到上,从蓝色开始渐变、到高度40%位置是绿色渐变开始、最后以红色结束 */

(2)colortransparent :将文字颜色设置成透明色。
(3)backgroundcliptext背景裁剪文字前景色。
⚠️注:backgroundcliptext支持ie
属性
borderbox默认值背景绘制边框方框)
paddingbox背景绘制在衬距方框)
contentbox背景绘制内容方框)
text(背景绘制在文字里)

#example1 {
    border: 10px dotted black;
    padding:10px;
	background-image: linear-gradient(to right, yellow, pink 50%)
}
#example2 {
    border: 10px dotted black;
    padding:10px;
    background-clip: padding-box;
	background-image: linear-gradient(to right, yellow, pink 50%)
}
#example3 {
    border: 10px dotted black;
    padding:10px;
    background-clip: content-box;
	background-image: linear-gradient(to right, yellow, pink 50%)
}
#example4 {
    border: 10px dotted black;
    padding:10px;
    background-clip: text;
	-webkit-background-clip:text;
	color: transparent;
	background-image: linear-gradient(to right, yellow, pink 50%)
}

background-clip示例效果图

2、-webkitmask图片蒙版效果制作渐变色

在这里插入图片描述
在这里插入图片描述

.text-gradient {
     position: relative;
     color: pink;
     font-size: 20px;
}
.text-gradient:before {
     content: attr(text);
     position: absolute;
     z-index: 10;
     color: orange;
     -webkit-mask: linear-gradient(to right, transparent, orange);
  }

<div text="文字渐变" class="text-gradient">文字渐变

实现原理
(1).text-gradient:before生成一个元素
(2)content:attr(text): 让新元素内容与原文本内容相同,
(3)color:orange 将新元素文本设置为橙色
(4)webkitmask: linear-gradient(to right, transparent, orange):为新元素添加一个从左到右,透明到橙色的渐变遮罩,before 元素中与masktransparent重叠部分变成了透明色。
before 新元素与原 div 蓝色文本叠加,形成了从左至右从蓝色到橙色的渐变效果
⚠️注:mask支持IE,目前仅有-webkit前缀的谷歌及safari浏览器
webkit-mask属性

demo1 {
    background : url("images/logo.png") no-repeat;
    -webkit-mask : url("images/mask.png");
}

mask动态模板遮罩案例参考

原文地址:https://blog.csdn.net/kxy5201314/article/details/129497008

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

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

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

发表回复

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