将渐变色从上向下过渡得越来越浅
在css中,如何实现搜索框和轮播图的背景色效果?将从左到右过渡的渐变色更改为从上向下过渡,并且从上到下越来越浅?
回答:
我们可以使用 mask-image 属性,加上一个从上到下的渐变遮罩来实现。但是,mdn 上的描述需要了解一些像素计算相关的知识,ui人员一般会比较清楚。
以下是实现代码:
html, body { width: 100%; height: 100%; } html { background-color: #ffffff; } body { -webkit-mask-image: linear-gradient(to bottom, #000000, transparent); background-image: linear-gradient(to right, rgb(39, 121, 245), rgb(81, 221, 240) ,rgb(118, 216, 118)); background-repeat: no-repeat; }
效果图:
[图片]