IconFont 图标
-
briefcase-b
-
calender
-
bell-b
-
buildings
-
building-b
-
board-items
-
camera
-
circle-check
-
check
-
checkbox-b
-
circle-close
-
circle-ellipsis
-
circle-pause
-
circle-graph
-
circle-plus
-
circle-play
-
circle-plus-b
-
circle-question-b
-
circle-up-b
-
circle-stop
-
circle-stamp
-
circle-warning
-
circle-warning-b
-
close-large
-
clock
-
cloud-upload
-
disk
-
doc
-
down
-
down-large
-
download-b
-
edit
-
ellipsis
-
envelop-b
-
edit-b
-
eye-b
-
female
-
file
-
fast-forward
-
file-add
-
file-text
-
folder-add
-
folder-b
-
fingerprint-b
-
gears
-
gear
-
grid-b
-
hash
-
graph
-
house-b
-
home
-
left-large
-
lines-b
-
link
-
list-items
-
loop
-
male
-
magnifier-b
-
message
-
message-b
-
minus
-
pan
-
monitor
-
phone-b
-
money-exchange-b
-
phonebook
-
pin
-
pie-chart-b
-
power
-
plus
-
recycled
-
recycled-b
-
return
-
right-large
-
safety
-
sliders
-
slider-panel
-
sort-alpha-asc
-
smile
-
structure
-
sound-b
-
sound
-
stamp-b
-
task
-
up-b
-
upgrade
-
user
-
up-large
-
user-add
-
user-avatar
-
user-b
-
user-doc
-
user-gear
-
user-list
-
user-quit
-
user-edit
-
users
-
user-star
-
verified-1
-
verified-2
-
zoom-fit
-
wechat-pay
-
zoom-in
-
zoom-out
-
warning
-
alipay
-
zoom-fullscreen
-
array-left-b
-
approval
-
array-right-b
-
bell
-
bar-chart
-
circle-money
-
sidebar
-
gear-b
-
apps
-
folder
-
location
-
layers
-
user-2
-
up-circle
-
application-b
-
box-duplicate
-
checkbox
-
circle-a
-
calenda-right
-
apps2
-
box-edit
-
circle-list
-
circle-play2
-
circle-reduce
-
circle-clock
-
circle-users
-
envelop
-
flag-plus
-
gear-small-b
-
location2
-
lock-open
-
lock
-
mountain
-
note
-
notebook
-
places
-
message-edit
-
plus-b
-
presentation
-
recycled-big
-
pad-draw
-
refresh
-
shop-b
-
shared
-
sort
-
star
-
share
-
sofa
-
tag
-
task-b
-
user-meeting
-
活动-场所标识-办公楼
-
活动-场所标识-咖啡厅
-
活动-场所标识-影视厅
-
活动-场所标识-讨论-01
-
退队用户默认头像
-
version-pro
-
version-ent
-
version-free
-
drop-down
-
circle-close-b
-
QR-code
-
book
-
activity
-
report
-
circle-right-arrow
-
cloud
-
grass
-
flower
-
drip
-
sun
-
umbrella
-
bloom
-
share
-
apple
-
flag
-
small-bells
-
necktie
-
crown
-
clock
-
lamp
-
upgrade
-
constitute
-
storage
-
team-members
-
depressed
-
ent-auth
-
team-setup
-
stamp-o
-
minus-circle
-
plus-circle
-
member-remove
-
info
-
card
-
p-done
-
p-complete
-
p-active
-
phone
-
lever
-
fit-size
-
full-screen
-
image-download
-
tip-b
-
file-zip
-
unread-envelope
-
read-envelope
-
close-eye
-
daily-report
-
monthly-report
-
weekly-report
-
left-circle
-
note-book-b
-
align-left
-
font
-
plus-square
-
dot-circle
-
caret-square-down
-
table
-
lock
-
mobile-phone
-
pencil
-
pomodoro
-
report-form
-
completed-task
-
todo-task
-
doing-task
-
like
-
heart
-
heart-fill
-
like-fill
-
wechat-fill
-
image
-
temple-selected
-
activity
-
open-eye
-
return-b
-
comment
-
like
-
password
-
phone
-
shield
-
temple
-
lock-b
-
plus-square-b
-
circle-uncheck
-
WeChat
-
article
-
down-large-b
-
home
-
circle-check-b
-
comment
-
smile
-
vip
-
collect
-
WeChat
-
moments
-
tico-muisc-b
-
tico-muisc
-
subtask
-
星星
-
share
-
Project attribution
unicode引用
unicode是字体在网页端最原始的应用方式,特点是:
- 兼容性最好,支持ie6+,及所有现代浏览器。
- 支持按字体的方式去动态调整图标大小,颜色等等。
- 但是因为是字体,所以不支持多色。只能使用平台里单色的图标,就算项目里有多色图标也会自动去色。
注意:新版iconfont支持多色图标,这些多色图标在unicode模式下将不能使用,如果有需求建议使用symbol的引用方式
unicode使用步骤如下:
第一步:拷贝项目下面生成的font-face
@font-face {
font-family: 'tico';
src: url('iconfont.eot');
src: url('iconfont.eot?#iefix') format('embedded-opentype'),
url('iconfont.woff') format('woff'),
url('iconfont.ttf') format('truetype'),
url('iconfont.svg#tico') format('svg');
}
第二步:定义使用iconfont的样式
.tico{
font-family:"tico" !important;
font-size:16px;font-style:normal;
-webkit-font-smoothing: antialiased;
-webkit-text-stroke-width: 0.2px;
-moz-osx-font-smoothing: grayscale;
}
第三步:挑选相应图标并获取字体编码,应用于页面
<i class="tico">3</i>
"tico"是你项目下的font-family。可以通过编辑项目查看,默认是"iconfont"。