mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
add icon
This commit is contained in:
parent
728f76e6cf
commit
6cded1d97b
6
app.json
6
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
|
||||
}
|
||||
|
55
dist/icon/index.wxss
vendored
Normal file
55
dist/icon/index.wxss
vendored
Normal file
@ -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'; } /* '' */
|
1
dist/index.wxss
vendored
1
dist/index.wxss
vendored
@ -14,3 +14,4 @@
|
||||
@import "steps/index.wxss";
|
||||
@import "toast/index.wxss";
|
||||
@import "toptips/index.wxss";
|
||||
@import "icon/index.wxss";
|
||||
|
4
dist/quantity/index.js
vendored
4
dist/quantity/index.js
vendored
@ -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);
|
||||
}
|
||||
|
@ -5,6 +5,10 @@
|
||||
<view class="zui-cell__bd">Button</view>
|
||||
<view class="zui-cell__ft"></view>
|
||||
</navigator>
|
||||
<navigator class="zui-cell zui-cell--access" url="/example/icon/index">
|
||||
<view class="zui-cell__bd">Icon</view>
|
||||
<view class="zui-cell__ft"></view>
|
||||
</navigator>
|
||||
<navigator class="zui-cell zui-cell--access" url="/example/loadmore/index">
|
||||
<view class="zui-cell__bd">Loadmore</view>
|
||||
<view class="zui-cell__ft"></view>
|
||||
|
21
example/icon/index.js
Normal file
21
example/icon/index.js
Normal file
@ -0,0 +1,21 @@
|
||||
var app = getApp()
|
||||
|
||||
Page({
|
||||
data: {
|
||||
icons: [
|
||||
'cancel',
|
||||
'store',
|
||||
'certificate',
|
||||
'arrow',
|
||||
'shopping-cart',
|
||||
|
||||
]
|
||||
},
|
||||
|
||||
onLoad: function () {
|
||||
|
||||
},
|
||||
|
||||
onShow: function() {
|
||||
},
|
||||
})
|
8
example/icon/index.wxml
Normal file
8
example/icon/index.wxml
Normal file
@ -0,0 +1,8 @@
|
||||
<view class="container">
|
||||
<view class="zui-panel">
|
||||
<view wx:for="{{ icons }}" wx:for-item="icon">
|
||||
<view class="zui-icon zui-icon-{{ icon }}"></view>
|
||||
<view style="display: inline-block;">zui-icon-{{ icon }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
4
example/icon/index.wxss
Normal file
4
example/icon/index.wxss
Normal file
@ -0,0 +1,4 @@
|
||||
.zui-icon {
|
||||
font-size: 32px;
|
||||
margin: 20px;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user