-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
建议:支持外层控制兼容(小程序示例) #13
Labels
enhancement
New feature or request
Comments
你的意思是不输入size而是通过样式 就能处理icon的尺寸?size应是必须的,因为模板里size传给svg了,不是用来生成样式。
这个是怎么理解?能否截个图之类的说明一下? |
我先说改造的过程吧(微信小程序为例): 一、 把生成的图标代码样式里边的高和宽去掉
二、在样式模板里,添加可外层控制的样式,最终改造为:
三、 为了能够编译样式模板里的#size#,需要自动替换变量值后,再生成样式文件。
--------- 以上改造完成, 可以 npx iconfont-wechat 了。 四、 应用(小程序为例):
也可以在特别的地方用样式定义图标的宽高:
WXML代码:
----------- 结束!!! |
对了,svg里边的width和height不用去掉,对应:
上方代码中的width,和height无需去掉。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
能力有限,不知如何编译源码,由于实际需求,图标宽度、高度需要在外层样式控制的较多,键入size属性可能较麻烦后期调整。
--- css模板修改(微信小程序):
.icon {
background-repeat: no-repeat;
width: var(--width, #size#px);
height: var(--height, #size#px);
background-size: 100%;
}
--- 编译处理size(微信小程序示例)
var wxssFile = getTemplate_1.getTemplate('wechat.wxss');
wxssFile = replace_1.replaceSize(wxssFile, config.default_icon_size);
fs_1.default.writeFileSync(path_1.default.join(saveDir, fileName + '.wxss'), wxssFile);
外层控制 iconfont ,(这里需要用户使用时自行处理):
iconfont{
--width: 11pt;
--height: 11pt;
}
The text was updated successfully, but these errors were encountered: