微信小程序+ColorUI

官网

1、Color UI | 下载包

2、语雀文档 ColorUI 群资源

3、Github ColorUI 鲜亮的高饱和色彩,专注视觉的小程序组件库

ColorUI群资源

开发

1、下载官方案例demo,文件如下,colorui是独立的引入文件夹资源。

微信小程序+ColorUI_第1张图片

2、在app.json内

微信小程序+ColorUI_第2张图片

3、配置引入css样式的操作、pages和colorui同级目录

微信小程序+ColorUI_第3张图片

4、app.json

{
  "pages": [
    "pages/index/index"
  ],
  "window": {
    "navigationBarBackgroundColor": "#39b54a",
    "navigationBarTitleText": "Color UI",
    "navigationStyle": "custom",
    "navigationBarTextStyle": "white"
  },
  "usingComponents": {
    "cu-custom": "/colorui/components/cu-custom"
  },
  "sitemapLocation": "sitemap.json"
}

5、app.wxss

@import "colorui/main.wxss";
@import "colorui/icon.wxss";

6、页面的wxml、大功告成

<cu-custom bgColor="bg-gradual-blue" isBack="{{true}}">
  <view slot="backText">返回view>
  <view slot="content">布局view>
cu-custom>

微信小程序+ColorUI_第4张图片

如何使用

根据demo里面现成的页面,可以直接复制,然后改成自己的页面,其他的页面同样如此。

微信小程序+ColorUI_第5张图片

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