2 回答
鸿蒙传说
TA贡献1865条经验 获得超7个赞
先是在CSS里面照旧使用
1 2 3 4 5 6 7 | .ficon { font-family: "icons"; src: url('../font/icons.eot'); /* IE9*/ src: url('../font/icons.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../font/icons.woff') format('woff'), /* chrome、firefox */ url('../font/icons.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url('../font/icons.svg#iconfont') format('svg'); /* iOS 4.1- */ } |
然后在打包工具(一般是用webpack)需要使用url-loader。安装这个loader,然后在webpack配置的地方
1 2 3 4 5 6 7 | { test: /\.(woff2?|eot|ttf|otf|svg)(\?.*)?$/, loader: 'url', query: { limit: 10000 } } |
大致这样的。
添加回答
举报
0/150
提交
取消