一. 绘制图标 , 得到多个 SVG 文件
二. 用 IcoMoon 生成 SVG Sprite
打开 IcoMoon 网站 , 导入 SVG
选择要包含的图标 , 点击
Generate SVG & More
设置导出选项, 点击
download
保存Minify JS code (for SVG <use> polyfill)
IE 浏览器 external polyfillClass Prefix
类名前缀Use class selector
给 svg 标签加上类名
三. 在页面上使用
在 html 中直接加载 svg 标签
- 将 SVG 内容复制到 html 文件中
- 使用:
1
<svg class="icon icon-相机"><use xlink:href="#icon-相机"></svg>
使用 external svg
- 将 symbol-defs.svg 放在网站目录下 (需要有服务器环境才能加载)
- 引入 svgxuse.min.js (可选, IE 的 pollyfill)
- 使用 (以和 html 放在同一录下为例):
1
<svg class="icon icon-相机"><use xlink:href="symbol-defs.svg#icon-相机"></use></svg>
四. 完善
- 为了代替图标字体, 需要将字体宽和高置为
1rem
, 并使用color
样式填充1
2
3
4
5
6
7
8svg.icon {
display: inline-block;
width: 1em;
height: 1em;
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
}