Skip to content

Commit

Permalink
v2.0.2
Browse files Browse the repository at this point in the history
v2.0.2 2.0版本上线
  • Loading branch information
wen-gang committed Dec 22, 2018
1 parent df555a1 commit 967f46a
Show file tree
Hide file tree
Showing 257 changed files with 11,663 additions and 4,566 deletions.
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

27 changes: 0 additions & 27 deletions README.md

This file was deleted.

35 changes: 0 additions & 35 deletions app.json

This file was deleted.

170 changes: 0 additions & 170 deletions app.wxss

This file was deleted.

6 changes: 0 additions & 6 deletions colorui.wxss

This file was deleted.

2 changes: 2 additions & 0 deletions demo/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
89 changes: 89 additions & 0 deletions demo/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
//app.js
App({
onLaunch: function() {
wx.getSystemInfo({
success: e=> {
this.globalData.StatusBar = e.statusBarHeight;
this.globalData.CustomBar = e.platform == 'android' ? e.statusBarHeight + 50 : e.statusBarHeight + 45;
}
})
},
globalData: {
ColorList: [{
title: '嫣红',
name: 'red',
color: '#e54d42'
},
{
title: '桔橙',
name: 'orange',
color: '#f37b1d'
},
{
title: '明黄',
name: 'yellow',
color: '#fbbd08'
},
{
title: '橄榄',
name: 'olive',
color: '#8dc63f'
},
{
title: '森绿',
name: 'green',
color: '#39b54a'
},
{
title: '天青',
name: 'cyan',
color: '#1cbbb4'
},
{
title: '海蓝',
name: 'blue',
color: '#0081ff'
},
{
title: '姹紫',
name: 'purple',
color: '#6739b6'
},
{
title: '木槿',
name: 'mauve',
color: '#9c26b0'
},
{
title: '桃粉',
name: 'pink',
color: '#e03997'
},
{
title: '棕褐',
name: 'brown',
color: '#a5673f'
},
{
title: '玄灰',
name: 'grey',
color: '#8799a3'
},
{
title: '草灰',
name: 'gray',
color: '#aaaaaa'
},
{
title: '墨黑',
name: 'black',
color: '#333333'
},
{
title: '雅白',
name: 'white',
color: '#ffffff'
},
]
}
})
Loading

0 comments on commit 967f46a

Please sign in to comment.