mirror of
https://github.com/weilanwl/coloruicss.git
synced 2026-06-08 15:23:17 +08:00
v2.0.2
v2.0.2 2.0版本上线
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
Page({
|
||||
data: {
|
||||
elements: [
|
||||
{ title: '操作条', name: 'bar', color: 'purple', icon: 'vipcard' },
|
||||
{ title: '导航栏 ', name: 'nav', color: 'mauve', icon: 'formfill' },
|
||||
{ title: '列表', name: 'list', color: 'pink', icon: 'list' },
|
||||
{ title: '卡片', name: 'card', color: 'brown', icon: 'newsfill' },
|
||||
{ title: '表单', name: 'form', color: 'red', icon: 'formfill' },
|
||||
{ title: '时间轴', name: 'timeline', color: 'orange', icon: 'timefill' },
|
||||
{ title: '聊天', name: 'chat', color: 'green', icon: 'messagefill' },
|
||||
{ title: '轮播', name: 'swiper', color: 'olive', icon: 'album'},
|
||||
{ title: '模态框', name: 'modal', color: 'grey', icon: 'squarecheckfill' },
|
||||
],
|
||||
},
|
||||
onLoad: function () {
|
||||
},
|
||||
})
|
||||
@@ -0,0 +1 @@
|
||||
{}
|
||||
@@ -0,0 +1,8 @@
|
||||
<image src='/images/componentBg.png' mode='widthFix' class='response'></image>
|
||||
<view class='nav-list'>
|
||||
<navigator hover-class='none' url="../{{item.name}}/{{item.name}}" class="nav-li bg-{{item.color}}" style='animation: show {{(index+1)*0.2+1}}s 1;-webkit-animation: show {{(index+1)*0.2+1}}s 1;' wx:for="{{elements}}" wx:key>
|
||||
<view class="nav-title">{{item.title}}</view>
|
||||
<view class="nav-name">{{item.name}}</view>
|
||||
<icon class='icon-{{item.icon}}'/>
|
||||
</navigator>
|
||||
</view>
|
||||
Reference in New Issue
Block a user