add new icon (#65)

This commit is contained in:
Yao 2017-11-24 20:26:22 +08:00 committed by GitHub
parent 1a14adad09
commit e1df128978
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 49 additions and 7 deletions

Binary file not shown.

View File

@ -82,7 +82,14 @@ Page({
'tosend', 'tosend',
'sign', 'sign',
'home', 'home',
'phone' 'phone',
'play',
'pause',
'stop',
'hot',
'new',
'new-arrival',
'hot-sale'
] ]
} }
}); });

View File

@ -2,11 +2,11 @@
@font-face { @font-face {
font-family: 'zanui-weapp-icon'; font-family: 'zanui-weapp-icon';
src: url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-2e235d42a2.eot'); src: url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-17821bc26b.eot');
src: url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-2e235d42a2.eot?#iefix') format('embedded-opentype'), src: url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-17821bc26b.eot?#iefix') format('embedded-opentype'),
url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-2e235d42a2.woff2') format('woff2'), url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-17821bc26b.woff2') format('woff2'),
url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-2e235d42a2.woff') format('woff'), url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-17821bc26b.woff') format('woff'),
url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-2e235d42a2.ttf') format('truetype') url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-17821bc26b.ttf') format('truetype')
} }
.zan-icon { .zan-icon {
@ -127,4 +127,11 @@
.zan-icon-sign:before { content: '\e84e'; } /* '' */ .zan-icon-sign:before { content: '\e84e'; } /* '' */
.zan-icon-home:before { content: '\e84f'; } /* '' */ .zan-icon-home:before { content: '\e84f'; } /* '' */
.zan-icon-phone:before { content: '\e850'; } /* '' */ .zan-icon-phone:before { content: '\e850'; } /* '' */
.zan-icon-add-o:before { content: '\e851'; } /* '' */ .zan-icon-add-o:before { content: '\e851'; } /* '' */
.zan-icon-play:before { content: '\e852'; } /* '' */
.zan-icon-pause:before { content: '\e853'; } /* '' */
.zan-icon-stop:before { content: '\e854'; } /* '' */
.zan-icon-hot:before { content: '\e855'; } /* '' */
.zan-icon-new:before { content: '\e856'; } /* '' */
.zan-icon-new-arrival:before { content: '\e857'; } /* '' */
.zan-icon-hot-sale:before { content: '\e858'; } /* '' */

View File

@ -428,6 +428,34 @@ module.exports = {
keywords: ['buy', 'add'], keywords: ['buy', 'add'],
src: '加购.svg', src: '加购.svg',
css: 'add-o' css: 'add-o'
},
{
src: '播放.svg',
css: 'play'
},
{
src: '暂停.svg',
css: 'pause'
},
{
src: '停止.svg',
css: 'stop'
},
{
src: 'HOT.svg',
css: 'hot'
},
{
src: 'NEW.svg',
css: 'new'
},
{
src: '新品.svg',
css: 'new-arrival'
},
{
src: '热卖.svg',
css: 'hot-sale'
} }
] ]
}; };