3

我知道已经有关于@font-face、sass 和 rails 4 的问题,但我想看看是否有人能够让它工作。

我的 Sass 文件如下所示:

@font-face{ font-family:"FrutigerNextW01-Regular";
src:    url(font-path("4cef6d85-d22a-4541-b469-da13751862aa.eot?#iefix"));
src:    url(font-path("4cef6d85-d22a-4541-b469-da13751862aa.eot?#iefix")) format("eot"),
        url(font-path("d74de079-587d-4049-9cca-50ba02a536f9.woff")) format("woff"),
        url(font-path("07749504-e72d-4fc9-a58d-5b853dd51fc7.ttf")) format("truetype"),
        url(font-path("8178e4eb-8ce0-4c15-a701-4a102b204c0e.svg#8178e4eb-8ce0-4c15-a701-4a102b204c0e")) format("svg");
}

我尝试过使用 erb 标签、资产路径和我能找到的所有其他配置。

我已经在我的 application.rb 文件中尝试了这两行

config.assets.paths << "#{Rails.root}/app/assets/fonts"

config.assets.paths << Rails.root.join('app', 'assets', 'fonts')

难道我做错了什么?我知道有些人已经能够让这个配置工作,但它不适合我!

4

1 回答 1

3

I've got a Rails 3.2 app with web fonts that work correctly.

They are stored in app/assets/fonts and referenced from my ERB views with the asset_path() method (and not font_path()).

Here is the copy of my inline style tag :

<style type="text/css">
  @font-face {
    font-family: 'QuicksandBook';
    src: url('<%= asset_path('Quicksand_Book-webfont.eot') %>');
    src: local('☺'), url('<%= asset_path('Quicksand_Book-webfont.woff') %>') format('woff'), url('<%= asset_path('Quicksand_Book-webfont.ttf') %>') format('truetype'), url('<%= asset_path('Quicksand_Book-webfont.svg') %>') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'QuicksandBold';
    src: url('<%= asset_path('Quicksand_Bold-webfont.eot') %>');
    src: local('☺'), url('<%= asset_path('Quicksand_Bold-webfont.woff') %>') format('woff'), url('<%= asset_path('Quicksand_Bold-webfont.ttf') %>') format('truetype'), url('<%= asset_path('Quicksand_Bold-webfont.svg') %>') format('svg');
    font-weight: bold;
    font-style: normal;
  }
</style>
于 2014-03-06T13:07:36.523 回答