mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Icon): add back-top icon (#6931)
This commit is contained in:
parent
26c754e2f6
commit
9e86cfbdd8
Binary file not shown.
@ -230,6 +230,7 @@ const map = {
|
||||
F0E3: 'youzan-shield',
|
||||
F0E4: 'enlarge',
|
||||
F0E5: 'photo-fail',
|
||||
F0E6: 'back-top',
|
||||
};
|
||||
|
||||
const reversedMap = {};
|
||||
|
@ -13,7 +13,7 @@
|
||||
.van-icon {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
font: normal normal normal 14px/1 "<%= fontName %>";
|
||||
font: normal normal normal 14px/1 '<%= fontName %>';
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
@ -24,7 +24,7 @@
|
||||
}
|
||||
|
||||
<% _.each(glyphs, function(glyph) { %>.van-icon-<%= glyph.fileName %>::before {
|
||||
content: "\<%= glyph.codePoint %>";
|
||||
content: '\<%= glyph.codePoint %>';
|
||||
}
|
||||
|
||||
<% }); %>
|
@ -103,6 +103,7 @@ module.exports = {
|
||||
'desktop-o',
|
||||
'apps-o',
|
||||
'home-o',
|
||||
'back-top',
|
||||
'search',
|
||||
'points',
|
||||
'edit',
|
||||
|
File diff suppressed because one or more lines are too long
@ -5,9 +5,9 @@
|
||||
font-family: 'vant-icon';
|
||||
font-style: normal;
|
||||
font-display: auto;
|
||||
src: url('https://img.yzcdn.cn/vant/vant-icon-692d53.woff2') format('woff2'),
|
||||
url('https://img.yzcdn.cn/vant/vant-icon-692d53.woff') format('woff'),
|
||||
url('https://img.yzcdn.cn/vant/vant-icon-692d53.ttf') format('truetype');
|
||||
src: url('https://img.yzcdn.cn/vant/vant-icon-eeb192.woff2') format('woff2'),
|
||||
url('https://img.yzcdn.cn/vant/vant-icon-eeb192.woff') format('woff'),
|
||||
url('https://img.yzcdn.cn/vant/vant-icon-eeb192.ttf') format('truetype');
|
||||
}
|
||||
|
||||
.van-icon {
|
||||
@ -83,6 +83,10 @@
|
||||
content: '\F00E';
|
||||
}
|
||||
|
||||
.van-icon-back-top::before {
|
||||
content: '\F0E6';
|
||||
}
|
||||
|
||||
.van-icon-bag-o::before {
|
||||
content: '\F00F';
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user