⼩程序实现背景⾊渐变(css实现)(1)核⼼代码
-webkit-linear-gradient()
(2)app.wxss
/**app.wxss**/
page {
background: -webkit-linear-gradient(top,rgb(244,157,4),#FACF94,white);
参数值描述
top从上到下渐变
bottom从下到上渐变
left从左到右渐变
right从右到左渐变
rgb(244,157,4): 第⼀个颜⾊名
#FACF94:第⼆个颜⾊名
white:第三个颜⾊名
(3)效果图