Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Tìm hiểu thêm

How to load a font using font-face and a CDN like Amazon S3?

  • 3 trả lời
  • 12 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

Firefox cannot load the correct font when loading it from a CDN. Other browsers don´t have this problem.

My website: http://momardi.com

Platform: Linux server, with Apache, Wordpress 3.1 and W3 Total Cache plugin

My CDN: Amazon S3 with user read rights for the fonts

CSS font-face code:

@font-face {

 font-family: 'SansationRegular';
 src: url('http://momardi.s3.amazonaws.com/wp-content/themes/v1/fonts/Sansation_Regular-webfont.eot');
 src: local('SansationRegular'),
      url('fonts/Sansation_Regular-webfont.woff') format('woff'),
      url('http://momardi.s3.amazonaws.com/wp-content/themes/v1/fonts/Sansation_Regular-webfont.woff') format('woff'),
      url('http://momardi.s3.amazonaws.com/wp-content/themes/v1/fonts/Sansation_Regular-webfont.ttf') format('truetype'),
      url('http://momardi.s3.amazonaws.com/wp-content/themes/v1/fonts/Sansation_Regular-webfont.svg') format('svg'),
      url('fonts/Sansation_Regular-webfont.ttf') format('truetype'),
      url('fonts/Sansation_Regular-webfont.svg') format('svg');
      font-weight: normal;
      font-style: normal;

}

htaccess code:

<IfModule mod_headers.c> Header set Access-Control-Allow-Origin http://momardi.s3.amazonaws.com Header set Access-Control-Allow-Origin "*" </IfModule>

<FilesMatch "\.(ttf|otf|eot|svg|woff)$">

   <IfModule mod_headers.c>
       Header set Access-Control-Allow-Origin "*"
   </IfModule>

</FilesMatch>

Firefox cannot load the correct font when loading it from a CDN. Other browsers don´t have this problem. My website: http://momardi.com Platform: Linux server, with Apache, Wordpress 3.1 and W3 Total Cache plugin My CDN: Amazon S3 with user read rights for the fonts CSS font-face code: @font-face { font-family: 'SansationRegular'; src: url('http://momardi.s3.amazonaws.com/wp-content/themes/v1/fonts/Sansation_Regular-webfont.eot'); src: local('SansationRegular'), url('fonts/Sansation_Regular-webfont.woff') format('woff'), url('http://momardi.s3.amazonaws.com/wp-content/themes/v1/fonts/Sansation_Regular-webfont.woff') format('woff'), url('http://momardi.s3.amazonaws.com/wp-content/themes/v1/fonts/Sansation_Regular-webfont.ttf') format('truetype'), url('http://momardi.s3.amazonaws.com/wp-content/themes/v1/fonts/Sansation_Regular-webfont.svg') format('svg'), url('fonts/Sansation_Regular-webfont.ttf') format('truetype'), url('fonts/Sansation_Regular-webfont.svg') format('svg'); font-weight: normal; font-style: normal; } htaccess code: <IfModule mod_headers.c> Header set Access-Control-Allow-Origin http://momardi.s3.amazonaws.com Header set Access-Control-Allow-Origin "*" </IfModule> <FilesMatch "\.(ttf|otf|eot|svg|woff)$"> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin "*" </IfModule> </FilesMatch>

Được chỉnh sửa bởi gazpachu vào

Tất cả các câu trả lời (3)

more options

Firefox downloads the font (I can see that with Live Http Headers), so that doesn't seem to be the problem. I don't know why Firefox isn't using it. If I download the font and change the font-family to Sansation then I see the font.

more options

I can also see Firefox downloads the fonts in the "net" tab of Firebug but I don´t know why is not using them :-(

more options

Try to ask advice at the mozillaZine Web Development/Standards Evangelism forum.
The helpers at that forum are more knowledgeable about web development issues.
You need to register at the mozillaZine forum site in order to post at that forum.

See http://forums.mozillazine.org/viewforum.php?f=25