领先的免费Web技术教程,涵盖HTML到ASP.NET

网站首页 > 知识剖析 正文

css文本、图像纯css实现一个渐变的蒙版效果

nixiaole 2025-05-08 20:33:00 知识剖析 1 ℃
// 文章文本
.mainTxt {
	        mask-image: linear-gradient(to bottom, white 10%, transparent 90%);
}
// 图片
.imgTag {
	        mask-image: linear-gradient(to bottom, white 10%, transparent 90%);
}


以前都是套一个div来实现,现在不需要啦,直接mask-image属性来实现该效果即可!

最近发表
标签列表