其实就是:
- 在文案的下面垫一张彩色背景图
- 文字颜色设置成transparent
.text {
color: transparent;
background-image: url("xxx.jpg");
background-size: cover;
background-clip: text;
-webkit-background-clip: text;
background-repeat: no-repeat;
}
本文介绍了一种在网页设计中使用透明文字并将其背景替换为图片的方法,通过CSS属性实现文字与背景图的完美融合。
其实就是:
.text {
color: transparent;
background-image: url("xxx.jpg");
background-size: cover;
background-clip: text;
-webkit-background-clip: text;
background-repeat: no-repeat;
}
409
591
779
613

被折叠的 条评论
为什么被折叠?