微信小程序(学习四) -- 页面渐变色

实现下面的页面渐变色:
这里写图片描述

/* pages/draw.wxss */
page{
  height: 100%;
}
.container {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #055cfb), color-stop(1, #fe0000));
}
<!--pages/draw.wxml-->
<view class="container">
</view>

简单得你只需要看一遍就知道怎么做的了。

猜你喜欢

转载自blog.csdn.net/honey199396/article/details/79989314