From 6cded1d97b4b1b8d7f8e7dcd17ff9bd28d47b9b0 Mon Sep 17 00:00:00 2001 From: Nino Date: Thu, 22 Dec 2016 10:48:50 +0800 Subject: [PATCH 1/8] add icon --- app.js | 6 ++-- app.json | 6 ++-- dist/icon/index.wxss | 55 ++++++++++++++++++++++++++++++++++++ dist/index.wxss | 1 + dist/quantity/index.js | 4 ++- example/dashboard/index.wxml | 4 +++ example/icon/index.js | 21 ++++++++++++++ example/icon/index.wxml | 8 ++++++ example/icon/index.wxss | 4 +++ 9 files changed, 103 insertions(+), 6 deletions(-) create mode 100644 dist/icon/index.wxss create mode 100644 example/icon/index.js create mode 100644 example/icon/index.wxml create mode 100644 example/icon/index.wxss diff --git a/app.js b/app.js index 725edee2..beb8eaca 100644 --- a/app.js +++ b/app.js @@ -1,5 +1,5 @@ App({ - globalData:{ - } -}) + globalData: { + }, +}); diff --git a/app.json b/app.json index 4374623a..69f6d622 100644 --- a/app.json +++ b/app.json @@ -14,7 +14,8 @@ "example/form/index", "example/steps/index", "example/namecard/index", - "example/toast/index" + "example/toast/index", + "example/icon/index" ], "window":{ "navigationBarBackgroundColor": "#FAFAFA", @@ -22,5 +23,6 @@ "navigationBarTextStyle":"black", "backgroundTextStyle":"dark", "backgroundColor": "#f9f9f9" - } + }, + "debug": true } diff --git a/dist/icon/index.wxss b/dist/icon/index.wxss new file mode 100644 index 00000000..4bc6251b --- /dev/null +++ b/dist/icon/index.wxss @@ -0,0 +1,55 @@ +/* DO NOT EDIT! Generated by fount */ + +@font-face { + font-family: 'zuiicon'; + src: url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.eot'); + src: url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.eot?#iefix') format('embedded-opentype'), + url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.woff2') format('woff2'), + url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.woff') format('woff'), + url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.ttf') format('truetype') +} + +.zui-icon { + display: inline-block; +} +.zui-icon:before { + font-family: "zuiicon" !important; + font-style: normal; + font-weight: normal; + speak: none; + + display: inline-block; + text-decoration: inherit; + width: 1em; + text-align: center; + + /* For safety - reset parent styles, that can break glyph codes*/ + font-variant: normal; + text-transform: none; + + /* fix buttons height, for twitter bootstrap */ + line-height: 1em; + + /* Animation center compensation - margins should be symmetric */ + /* remove if not needed */ + /* margin-left: .2em; */ + + /* you can be more comfortable with increased icons size */ + /* font-size: 120%; */ + + /* Font smoothing. That was taken from TWBS */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + + /* Uncomment for 3D effect */ + /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ +} +/* DO NOT EDIT! Generated by fount */ + + +.zui-icon-cancel:before { content: '\e800'; } /* '' */ +.zui-icon-store:before { content: '\e801'; } /* '' */ +.zui-icon-certificate:before { content: '\e802'; } /* '' */ +.zui-icon-arrow:before { content: '\e803'; } /* '' */ +.zui-icon-shopping-cart:before { content: '\e804'; } /* '' */ +.zui-icon-store:before { content: '\e805'; } /* '' */ diff --git a/dist/index.wxss b/dist/index.wxss index 8a66f808..1efd4bda 100644 --- a/dist/index.wxss +++ b/dist/index.wxss @@ -14,3 +14,4 @@ @import "steps/index.wxss"; @import "toast/index.wxss"; @import "toptips/index.wxss"; +@import "icon/index.wxss"; diff --git a/dist/quantity/index.js b/dist/quantity/index.js index 332bcce4..58cd5d91 100644 --- a/dist/quantity/index.js +++ b/dist/quantity/index.js @@ -4,7 +4,9 @@ function handle(e, num) { var disabled = dataset.disabled; var quantity = +dataset.quantity; - if (disabled == 'true') return null; + console.error(disabled, typeof disabled); + + if (disabled == true) return null; callback.call(this, componentId, quantity + num); } diff --git a/example/dashboard/index.wxml b/example/dashboard/index.wxml index 2c5e1792..430e2a88 100644 --- a/example/dashboard/index.wxml +++ b/example/dashboard/index.wxml @@ -5,6 +5,10 @@ Button + + Icon + + Loadmore diff --git a/example/icon/index.js b/example/icon/index.js new file mode 100644 index 00000000..843ceb7c --- /dev/null +++ b/example/icon/index.js @@ -0,0 +1,21 @@ +var app = getApp() + +Page({ + data: { + icons: [ + 'cancel', + 'store', + 'certificate', + 'arrow', + 'shopping-cart', + + ] + }, + + onLoad: function () { + + }, + + onShow: function() { + }, +}) diff --git a/example/icon/index.wxml b/example/icon/index.wxml new file mode 100644 index 00000000..e1bc073e --- /dev/null +++ b/example/icon/index.wxml @@ -0,0 +1,8 @@ + + + + + zui-icon-{{ icon }} + + + diff --git a/example/icon/index.wxss b/example/icon/index.wxss new file mode 100644 index 00000000..bb27e577 --- /dev/null +++ b/example/icon/index.wxss @@ -0,0 +1,4 @@ +.zui-icon { + font-size: 32px; + margin: 20px; +} From ae04b6c6d912aef20b55acc312452230c8247fdf Mon Sep 17 00:00:00 2001 From: Nino Date: Thu, 22 Dec 2016 10:59:38 +0800 Subject: [PATCH 2/8] delete console --- dist/quantity/index.js | 4 +--- example/icon/index.js | 14 ++------------ 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/dist/quantity/index.js b/dist/quantity/index.js index 58cd5d91..e3d1870b 100644 --- a/dist/quantity/index.js +++ b/dist/quantity/index.js @@ -4,9 +4,7 @@ function handle(e, num) { var disabled = dataset.disabled; var quantity = +dataset.quantity; - console.error(disabled, typeof disabled); - - if (disabled == true) return null; + if (disabled) return null; callback.call(this, componentId, quantity + num); } diff --git a/example/icon/index.js b/example/icon/index.js index 843ceb7c..a9eadd4b 100644 --- a/example/icon/index.js +++ b/example/icon/index.js @@ -1,5 +1,3 @@ -var app = getApp() - Page({ data: { icons: [ @@ -8,14 +6,6 @@ Page({ 'certificate', 'arrow', 'shopping-cart', - ] - }, - - onLoad: function () { - - }, - - onShow: function() { - }, -}) + } +}); From 4e75ba090b7f1565d162dab6dcbb084c47ab72cb Mon Sep 17 00:00:00 2001 From: Nino Date: Thu, 22 Dec 2016 11:52:23 +0800 Subject: [PATCH 3/8] update icon --- dist/icon/index.wxss | 28 ++++++++++++++++------------ example/icon/index.js | 11 ++++++++--- example/icon/index.wxml | 4 ++-- example/icon/index.wxss | 12 +++++++++++- 4 files changed, 37 insertions(+), 18 deletions(-) diff --git a/dist/icon/index.wxss b/dist/icon/index.wxss index 4bc6251b..cbc89a6e 100644 --- a/dist/icon/index.wxss +++ b/dist/icon/index.wxss @@ -2,17 +2,17 @@ @font-face { font-family: 'zuiicon'; - src: url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.eot'); - src: url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.eot?#iefix') format('embedded-opentype'), - url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.woff2') format('woff2'), - url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.woff') format('woff'), - url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.ttf') format('truetype') + src: url('https://b.yzcdn.cn/zui/font/zuiicon-eeabfa2d9e.eot'); + src: url('https://b.yzcdn.cn/zui/font/zuiicon-eeabfa2d9e.eot?#iefix') format('embedded-opentype'), + url('https://b.yzcdn.cn/zui/font/zuiicon-eeabfa2d9e.woff2') format('woff2'), + url('https://b.yzcdn.cn/zui/font/zuiicon-eeabfa2d9e.woff') format('woff'), + url('https://b.yzcdn.cn/zui/font/zuiicon-eeabfa2d9e.ttf') format('truetype') } .zui-icon { display: inline-block; } -.zui-icon:before { +.zui-icon::before { font-family: "zuiicon" !important; font-style: normal; font-weight: normal; @@ -47,9 +47,13 @@ /* DO NOT EDIT! Generated by fount */ -.zui-icon-cancel:before { content: '\e800'; } /* '' */ -.zui-icon-store:before { content: '\e801'; } /* '' */ -.zui-icon-certificate:before { content: '\e802'; } /* '' */ -.zui-icon-arrow:before { content: '\e803'; } /* '' */ -.zui-icon-shopping-cart:before { content: '\e804'; } /* '' */ -.zui-icon-store:before { content: '\e805'; } /* '' */ +.zui-icon-arrow:before { content: '\e800'; } /* '' */ +.zui-icon-certificate:before { content: '\e801'; } /* '' */ +.zui-icon-check:before { content: '\e802'; } /* '' */ +.zui-icon-checked:before { content: '\e803'; } /* '' */ +.zui-icon-close:before { content: '\e804'; } /* '' */ +.zui-icon-gift:before { content: '\e805'; } /* '' */ +.zui-icon-location:before { content: '\e806'; } /* '' */ +.zui-icon-message:before { content: '\e807'; } /* '' */ +.zui-icon-store:before { content: '\e808'; } /* '' */ +.zui-icon-shopping-cart:before { content: '\e809'; } /* '' */ diff --git a/example/icon/index.js b/example/icon/index.js index a9eadd4b..abe6625e 100644 --- a/example/icon/index.js +++ b/example/icon/index.js @@ -1,10 +1,15 @@ Page({ data: { icons: [ - 'cancel', - 'store', - 'certificate', 'arrow', + 'certificate', + 'check', + 'checked', + 'close', + 'gift', + 'location', + 'message', + 'store', 'shopping-cart', ] } diff --git a/example/icon/index.wxml b/example/icon/index.wxml index e1bc073e..134bc00b 100644 --- a/example/icon/index.wxml +++ b/example/icon/index.wxml @@ -1,8 +1,8 @@ - + - zui-icon-{{ icon }} + zui-icon-{{ icon }} diff --git a/example/icon/index.wxss b/example/icon/index.wxss index bb27e577..4f9436cd 100644 --- a/example/icon/index.wxss +++ b/example/icon/index.wxss @@ -1,4 +1,14 @@ +.icon-wrap { + width: 33.33333%; + height: 100px; + float: left; + text-align: center; +} +.icon-classname { + color: #999; + font-size: 10px; +} .zui-icon { - font-size: 32px; + font-size: 40px; margin: 20px; } From 979ae94f36e67276ef7f7b12fe7b944d59a1b836 Mon Sep 17 00:00:00 2001 From: Nino Date: Thu, 22 Dec 2016 13:28:45 +0800 Subject: [PATCH 4/8] =?UTF-8?q?=E4=BC=98=E5=8C=96Dialog=E6=B6=88=E5=A4=B1?= =?UTF-8?q?=E6=95=88=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dist/dialog/index.wxss | 37 +++++++++++-------------------------- 1 file changed, 11 insertions(+), 26 deletions(-) diff --git a/dist/dialog/index.wxss b/dist/dialog/index.wxss index 79eec609..36f4393c 100644 --- a/dist/dialog/index.wxss +++ b/dist/dialog/index.wxss @@ -1,41 +1,26 @@ -.zui-dialog, .zui-dialog__mask { - position: absolute; + position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 10; -} - -.zui-dialog__mask { background: rgba(0, 0, 0, 0.7); + display: none; } - -@keyframes slideUp { - 0% { - transform: translateY(100%); - opacity: 0; - } - 10% { - opacity: 1; - } - 100% { - transform: translateY(0); - opacity: 1; - } -} - .zui-dialog__container { - position: absolute; + position: fixed; bottom: 0; width: 750rpx; background: white; - transform: translateY(0); - opacity: 0; + transform: translateY(150%); transition: all 0.4s ease; - animation: slideUp 0.4s ease ; - animation-fill-mode: forwards; - animation-delay: 0.1s; z-index: 11; } +.zui-dialog--show .zui-dialog__container { + transform: translateY(0); +} +.zui-dialog--show .zui-dialog__mask { + display: block; +} + From 9b761bd032304d1e3efeb2e98ea9c89fcfd2c390 Mon Sep 17 00:00:00 2001 From: Nino Date: Thu, 22 Dec 2016 15:00:10 +0800 Subject: [PATCH 5/8] add dialog example --- app.json | 3 ++- example/dashboard/index.wxml | 4 ++++ example/dialog/index.js | 20 ++++++++++++++++++++ example/dialog/index.wxml | 20 ++++++++++++++++++++ 4 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 example/dialog/index.js create mode 100644 example/dialog/index.wxml diff --git a/app.json b/app.json index 69f6d622..119ecf97 100644 --- a/app.json +++ b/app.json @@ -15,7 +15,8 @@ "example/steps/index", "example/namecard/index", "example/toast/index", - "example/icon/index" + "example/icon/index", + "example/dialog/index" ], "window":{ "navigationBarBackgroundColor": "#FAFAFA", diff --git a/example/dashboard/index.wxml b/example/dashboard/index.wxml index 430e2a88..46f9de74 100644 --- a/example/dashboard/index.wxml +++ b/example/dashboard/index.wxml @@ -49,6 +49,10 @@ Quantity + + Dialog + + Toptips diff --git a/example/dialog/index.js b/example/dialog/index.js new file mode 100644 index 00000000..3f7c936f --- /dev/null +++ b/example/dialog/index.js @@ -0,0 +1,20 @@ +var app = getApp() + +Page({ + data: { + showDialog: false + }, + + toggleDialog() { + this.setData({ + showDialog: !this.data.showDialog + }); + }, + + onLoad: function () { + + }, + + onShow: function() { + }, +}) diff --git a/example/dialog/index.wxml b/example/dialog/index.wxml new file mode 100644 index 00000000..7faacbf8 --- /dev/null +++ b/example/dialog/index.wxml @@ -0,0 +1,20 @@ + + + + + + + + + + 内容 + + + + From eb89c6fbc8668cf33c1c8d7ac6aa518b4682d989 Mon Sep 17 00:00:00 2001 From: Nino Date: Thu, 22 Dec 2016 15:09:43 +0800 Subject: [PATCH 6/8] =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- example/dashboard/index.js | 51 ++++++++++++++++++++++++++++ example/dashboard/index.wxml | 64 ++---------------------------------- 2 files changed, 53 insertions(+), 62 deletions(-) diff --git a/example/dashboard/index.js b/example/dashboard/index.js index 99e7458d..306aeee4 100644 --- a/example/dashboard/index.js +++ b/example/dashboard/index.js @@ -2,6 +2,57 @@ var app = getApp() Page({ data: { + list: [ + { + name: 'Badge', + path: '/example/badge/index' + }, { + name: 'Button', + path: '/example/btn/index' + }, { + name: 'Cell', + path: '/example/cell/index' + }, { + name: 'Dialog', + path: '/example/dialog/index' + }, { + name: 'Form', + path: '/example/form/index' + }, { + name: 'Helper', + path: '/example/helper/index' + }, { + name: 'Icon', + path: '/example/icon/index' + }, { + name: 'Label', + path: '/example/label/index' + }, { + name: 'Loadmore', + path: '/example/loadmore/index' + }, { + name: 'Namecard', + path: '/example/namecard/index' + }, { + name: 'Panel', + path: '/example/panel/index' + }, { + name: 'Quantity', + path: '/example/quantity/index' + }, { + name: 'Steps', + path: '/example/steps/index' + }, { + name: 'Tab', + path: '/example/tab/index' + }, { + name: 'Toast', + path: '/example/toast/index' + }, { + name: 'Toptips', + path: '/example/toptips/index' + } + ] }, onLoad: function () { diff --git a/example/dashboard/index.wxml b/example/dashboard/index.wxml index 46f9de74..5891b85a 100644 --- a/example/dashboard/index.wxml +++ b/example/dashboard/index.wxml @@ -1,68 +1,8 @@ - - Button - - - - Icon - - - - Loadmore - - - - Panel - - - - Cell - - - - Badge - - - - Tab - - - - Label - - - - Helper - - - - Form - - - - Namecard - - - - Quantity - - - - Dialog - - - - Toptips - - - - Steps - - - - Toast + + {{ item.name }} From 9c435055fc95442ab56434d48e569b1bb453fa69 Mon Sep 17 00:00:00 2001 From: Nino Date: Thu, 22 Dec 2016 17:07:31 +0800 Subject: [PATCH 7/8] fix tab fixed bug --- dist/tab/index.wxml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/tab/index.wxml b/dist/tab/index.wxml index 955a447d..beb4670b 100644 --- a/dist/tab/index.wxml +++ b/dist/tab/index.wxml @@ -6,7 +6,7 @@ - + From f4382408124d23fe9b25d1ca92800f3abcb12e42 Mon Sep 17 00:00:00 2001 From: Nino Date: Thu, 22 Dec 2016 20:09:21 +0800 Subject: [PATCH 8/8] build --- dist/icon/index.wxss | 10 +++++----- example/icon/index.wxml | 8 +++++++- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/dist/icon/index.wxss b/dist/icon/index.wxss index cbc89a6e..5766cafd 100644 --- a/dist/icon/index.wxss +++ b/dist/icon/index.wxss @@ -2,11 +2,11 @@ @font-face { font-family: 'zuiicon'; - src: url('https://b.yzcdn.cn/zui/font/zuiicon-eeabfa2d9e.eot'); - src: url('https://b.yzcdn.cn/zui/font/zuiicon-eeabfa2d9e.eot?#iefix') format('embedded-opentype'), - url('https://b.yzcdn.cn/zui/font/zuiicon-eeabfa2d9e.woff2') format('woff2'), - url('https://b.yzcdn.cn/zui/font/zuiicon-eeabfa2d9e.woff') format('woff'), - url('https://b.yzcdn.cn/zui/font/zuiicon-eeabfa2d9e.ttf') format('truetype') + src: url('https://b.yzcdn.cn/zui/font/zuiicon-ca855b1878.eot'); + src: url('https://b.yzcdn.cn/zui/font/zuiicon-ca855b1878.eot?#iefix') format('embedded-opentype'), + url('https://b.yzcdn.cn/zui/font/zuiicon-ca855b1878.woff2') format('woff2'), + url('https://b.yzcdn.cn/zui/font/zuiicon-ca855b1878.woff') format('woff'), + url('https://b.yzcdn.cn/zui/font/zuiicon-ca855b1878.ttf') format('truetype') } .zui-icon { diff --git a/example/icon/index.wxml b/example/icon/index.wxml index 134bc00b..34b6cc8a 100644 --- a/example/icon/index.wxml +++ b/example/icon/index.wxml @@ -1,7 +1,13 @@ - + + zui-icon-{{ icon }} + + + + + zui-icon-{{ icon }}