10

使用 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以便我可以传递字体名称和路径并注册字体而无需重复所有这些代码?

我不知道如何将它与我的字体混合...

或者,如果有更好的方法来做到这一点......

谢谢你,米格尔

4

7 回答 7

17

您可以定义自定义 mixin 以包含自定义字体,但由于 LESS 不实现任何控制指令,仅保护 mixin(在当前问题方面无用),您无法缩短字体定义的 mixin 代码。

.include-custom-font(@family: arial, @weight: normal, @style: normal){
    @font-face{
        font-family: @family;
        src:url('fonts/@{family}.eot');
        src:url('fonts/@{family}.eot?#iefix') format('embedded-opentype'),
            url('fonts/@{family}.woff') format('woff'),
            url('fonts/@{family}.ttf') format('truetype'),
            url('fonts/@{family}.svg#icon') format('svg');
        font-weight: @weight;
        font-style: @style;
    }
}
于 2013-08-02T14:42:57.330 回答
4

我知道它是一个旧帖子但是,我这样解决了这个问题,希望它可以帮助其他人。

首先,我创建了一个参数 mixin,其中包含将在 @font-face 内重复的所有内容:

.loadFont(@Weight; @Name; @Local; @Eot:'@{Local}.eot'; @Woff:'@{Local}.woff'){
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: @Weight;
    src: url(@Eot);
    src: local(@Name), local(@Local), url(@Eot) format('embedded-opentype'), url(@Woff) format('woff');
}

然后加载我所有的网络字体(在这种情况下打开 sans)

@font-face {.loadFont(100;'Roboto Thin';'Roboto-Thin')}
@font-face {.loadFont(300;'Roboto Light';'Roboto-Light')}
@font-face {.loadFont(400;'Roboto Regular';'Roboto-Regular')}
@font-face {.loadFont(500;'Roboto Medium';'Roboto-Medium')}
@font-face {.loadFont(700;'Roboto Bold';'Roboto-Bold')}
@font-face {.loadFont(900;'Roboto Black';'Roboto-Black')}

然后使用 CSS 规则创建第二个参数 mixin 以应用于元素

.font(@weight:400; @size:14px; @font-family:'Open Sans', sans-serif){
    font:@arguments;
}

最后我像这样在我的元素上使用它

div.someClass{
    .font(); //to accept all default parameters 
}
div.otherClass{
    .font(100; 40px); //to specify weight and size
}

作为旁注。我的所有*.eot文件*.woff都在文件旁边,LESS并命名为@Local参数(Open-Sans.woff|| Open-Sans.eot

于 2014-02-11T19:45:34.917 回答
3

我喜欢在文件夹中构建我的字体,如下所示:

/fonts/OpenSans-Bold/OpenSans-Bold.eot
/fonts/OpenSans-Bold/OpenSans-Bold.svg
/fonts/OpenSans-Bold/OpenSans-Bold.ttf
/fonts/OpenSans-Bold/OpenSans-Bold.woff

我将这个 LESS MIXIN 用于字体:

.font-face(@fontName: sans-serif; @fontWeight: normal; @fontStyle: normal) {
    @font-face {
        font-family: @fontName;
        src: url('@{pTheme}/fonts/@{fontName}/@{fontName}.eot');
        src: url('@{pTheme}/fonts/@{fontName}/@{fontName}.eot?#iefix') format('embedded-opentype'),
             url('@{pTheme}/fonts/@{fontName}/@{fontName}.woff') format('woff'),
             url('@{pTheme}/fonts/@{fontName}/@{fontName}.ttf') format('truetype'),
             url('@{pTheme}/fonts/@{fontName}/@{fontName}.svg#@{fontName}') format('svg');
        font-weight: @fontWeight;
        font-style: @fontStyle;
    }
}

在哪里:

@pTheme: "../../themes/[THEME NAME]";

Mixin 调用示例:

.font-face('OpenSans-Bold');

我已经创建了@pTheme 变量,因此我也可以在背景图像上使用它,如下所示:

background: url("@{pTheme}/images/logo.png") no-repeat;
于 2014-03-06T18:05:35.233 回答
1

LESS 确实支持带有参数的 mixin。见这里: http: //lesscss.org/#-parametric-mixins

于 2013-08-02T14:28:24.610 回答
0

我知道这个问题有点老了,但我用Mészáros Lajos的回答跑了。它需要考虑一些目前没有的事情:

  1. 您的字体系列和字体文件名不需要匹配;事实上,对于“粗体”和“斜体”,您可能需要使用样式链接。请参阅:http ://www.smashingmagazine.com/2013/02/14/setting-weights-and-styles-at-font-face-declaration/ 。这可以防止当浏览器不理解字体之间的关系时发生“仿粗体”和“仿斜体”(例如,当您有一个强大的标签时,它不知道 MyFont-Bold 是正确的字体)使用 MyFont 的文本)。
  2. 字体家族名称和 SVG id 不需要匹配;例如,文件 montserrat-regular.svg 的 SVG ID 可能为 montserratregular。是的,您可以通过重命名文件来解决此问题,也许您应该这样做,但如果您要远程获取文件 (CDN),您可能就没有那么奢侈了。
  3. 个人喜好,我切换了变体和重量的顺序。在 CSS 字体速记中,变体是第一位的,所以为了保持相似,我把它放在第一位。
  4. 同样,个人喜好,我删除了默认值,因为我不想在没有明确说明的情况下调用此方法。当您必须指定所有内容时,您不太可能忘记您确实需要更改该字体的 SVG ID。
  5. 由于 Chrome-windows 目前没有抗锯齿 WOFF,我在 EOT 之后切换了移动 SVG 的顺序(旧的 IE 首先需要 EOT 否则会中断)。信用

.fontface(@family, @filename-base, @style, @weight, @svgID){
    font-family: @family;
    src:url('@{filename-base}.eot');
    src:url('@{filename-base}.svg#@{svgID}') format('svg'),
        url('@{filename-base}.eot?#iefix') format('embedded-opentype'),
        url('@{filename-base}.woff') format('woff'),
        url('@{filename-base}.ttf') format('truetype');
    font-weight: @weight;
    font-style: @style;
}

于 2014-04-24T19:33:57.007 回答
0

你可以试试这个 mixin for font-face (font Proxima Nova as expl):

.fontFace(@fontWidth) {
    @fontName: "Proxima Nova @{fontWidth}";
    @fileName: "../fonts/ProximaNova-@{fontWidth}";
    @font-face {        
        font-family: '@{fontName}';
        font-weight: 400;
        font-style: normal;
        src: url('@{fileName}.eot');
        src: url('@{fileName}.eot?#iefix') format('embedded-opentype'),
             url('@{fileName}.woff') format('woff'),
             url('@{fileName}.ttf') format('truetype'),
             url('@{fileName}.svg#@{fontName}') format('svg');
    }
}

.fontFace('Regular');
.fontFace('RegularIt');
.fontFace('Bold');

@fontName: Proxima Nova;
@font:          "@{fontName} Regular";
@font_italic:   "@{fontName} RegularIt";
@font_bold:     "@{fontName} Bold";

h2 {
    font: 400 50px @font_bold;  
}

同样,SASS/SCSS 的工作人员:

@mixin font ($weight) {
    @font-face {
        $fontName: 'Proxima Nova ' + $weight;
        $fileName: '../fonts/ProximaNova-' + $weight;

        font-family: $fontName;
        font-weight: 300;
        font-style: normal;
        src: url($fileName + '.eot ');
        src: url($fileName + '.eot?#iefix') format('embedded-opentype'),
           url($fileName + '.woff2') format('woff'),
           url($fileName + '.ttf') format('truetype'),
           url($fileName + '.svg##' + $fontName) format('svg');
    }
}
@include font(regular);
@include font(bold);
@include font(light);

$fontName: 'Proxima Nova ';
$font: $fontName + regular, "Helvetica Neue", sans-serif;
$font_bold: $fontName + bold;
$font_light: $fontName + light;

h2 {
    font: 300 15px $font_bold;
}
于 2016-10-01T09:41:05.947 回答
-5

这是我对 SASS 的演绎,经过测试和工作。

@mixin fontface($family: sans-serif, $weight: normal, $style: normal, $path: '../fonts', $filename: 'font'){ @font-face{ font-family: $family; src:url('#{$path}/#{$filename}.eot'); src:url('#{$path}/#{$filename}.eot?#iefix') format('embedded-opentype'), url('#{$path}/#{$filename}.woff') format('woff'), url('#{$path}/#{$filename}.ttf') format('truetype'), url('#{$path}/#{$filename}.svg#icon') format('svg'); font-weight: $weight; font-style: $style; } }

于 2014-05-22T06:27:34.117 回答