微信小程序设置顶部navigationBar为颜色渐变

效果图:微信小程序设置顶部navigationBar为颜色渐变_第1张图片

app.json

"window":{
    "navigationStyle": "custom",
    "enablePullDownRefresh": true
  },

 app.wxss

.ns {
   width: 100%;
   height: 135rpx;
   text-align:center;
   line-height: 155rpx; 
   color: white;
   font-weight:bold;
   background:linear-gradient(to right, rgb(173, 225, 255) , #614AF8);
}

然后直接在

 颜色渐变


 

 
————————————————
原文链接:https://blog.csdn.net/xchaha/article/details/81358509

你可能感兴趣的:(微信小程序,小程序)