scss Sass mixin包含font-face的字体

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss Sass mixin包含font-face的字体相关的知识,希望对你有一定的参考价值。

@mixin font-face($font-name, $file-name, $weight: normal, $style: normal) { 
  @font-face {
    font-family: quote($font-name);
    src: url($file-name + '.eot');
    src: url($file-name + '.eot?#iefix')  format('embedded-opentype'),
         url($file-name + '.woff') format('woff'),
         url($file-name + '.ttf')  format('truetype'),
         url($file-name + '.svg##{$font-name}')  format('svg');
    font-weight: $weight;
    font-style: $style;
  }
 }
 //Usage
 @include font-face('gotham', '/fonts/gotham');

以上是关于scss Sass mixin包含font-face的字体的主要内容,如果未能解决你的问题,请参考以下文章

scss SASS @ font-face mixin

scss SASS @ font-face mixin

scss SASS @ font-face mixin

scss Sass font-face mixin

scss SASS @ font-face mixin

scss Sass partial:@ font-face mixin