使用 Less 我定义字体系列如下:
@georgia: georgia, times, 'times new roman', 'nimbus roman no9 l', serif;
然后我有更少的mixin:
.font(@family: arial, @size: 1.0em, @lineheight: 1.0, @weight: normal, @style: normal, @variant: normal) {
font: @style @variant @weight @size~"/"@lineheight @family;
} // font
最后我像这样使用它:
p {
.font(@georgia, 1.0em, 1.5)
}
但我也想用自定义字体定义字体系列:
@something: 'custom-font', arial, ...;
但首先我需要注册自定义字体:
@font-face {
font-family: 'custom-font';
src:url('fonts/custom-font.eot');
src:url('fonts/custom-font.eot?#iefix') format('embedded-opentype'),
url('fonts/custom-font.woff') format('woff'),
url('fonts/custom-font.ttf') format('truetype'),
url('fonts/custom-font.svg#icon') format('svg');
font-weight: normal;
font-style: normal;
}
是否可以创建一个LESS mixin,@font-face
以便我可以传递字体名称和路径并注册字体而无需重复所有这些代码?
我不知道如何将它与我的字体混合...
或者,如果有更好的方法来做到这一点......
谢谢你,米格尔