Jump to content
  • 0

IE 8,7 не подшружает шрифты


a.antropov
 Share

Question

Добрый вечер.

IE 7-8 не подгружает шрифты, с чем может это быть связано?

Подгружаю так:

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

Конвертировал шрифты через сервис font2web.com

При верстке другой странички с другим шрифтом все браузеры подгружали шрифт

шрифты в папке присутствуют

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

Попробуйте сгенерировать шрифты этим сервисом: http://www.fontsquirrel.com/.

Добрый вечер!

Дизайнер использовал в макете шрифт Lobster.ttf. С генерировал через http://www.fontsquirrel.com/fontface/generator, но добавляю кириллический текст прямо в демку, проверяю в ie7, ie8 - шрифт не отображается, почему такое происходит и можно ли как то его встроить в ie?

Link to comment
Share on other sites

  • 0

В ие до 8-й версии есть баг с неправильным пониманием src, который должен фиксить этот фрагмент

src: url('fonts/MobileStore.eot?#iefix') format('embedded-opentype')

Но, видимо, не работает. Уж не знаю, почему :huh:

Link to comment
Share on other sites

  • 0
В ие до 8-й версии есть баг с неправильным пониманием src, который должен фиксить этот фрагмент src: url('fonts/MobileStore.eot?#iefix') format('embedded-opentype') Но, видимо, не работает. Уж не знаю, почему :huh:

 

все верно, баг заключается в том, что в ie ранних версий браузер воспринимает адрес шрифта начиная от первой открывающей скобки и до последней закрывающей

 

фиксить нужно  первую pfgbcm, тогда браузер решит что все остальное это параметры:

@font-face{  	font-family: 'MobileStore';  	src: url('fonts/MobileStore.eot?') format('embedded-opentype'),  	url('fonts/MobileStore.woff') format('woff'),  	url('fonts/MobileStore.ttf') format('truetype'),  	url('fonts/MobileStore.svg#webfont') format('svg');  	font-weight: normal;  	font-style: normal;  }
Link to comment
Share on other sites

  • 0

Я пытаюсь внедрить такой шрифт:

@font-face {    font-family: 'ArianAMUSerifBoldItalic';    src: url('../fonts/ArianAMUSerifBoldItalic/ArianAMUSerifBoldItalic.eot');    src: url('../fonts/ArianAMUSerifBoldItalic/ArianAMUSerifBoldItalic.eot?#iefix')format('embedded-opentype'),    url('../fonts/ArianAMUSerifBoldItalic/ArianAMUSerifBoldItalic.woff') format('woff'),    url('../fonts/ArianAMUSerifBoldItalic/ArianAMUSerifBoldItalic.ttf') format('truetype');    font-style: normal;    font-weight: normal;}
А IE у меня версии 11.0.24  Что не так?
в других браузерах все ОК!
Edited by max-wp
Link to comment
Share on other sites

  • 0

не спасло...

еще условия к задачке :)  , сайт крутится внутри компании на серверее IIS 7.5 настройки сервака по умолчанию. Если шрифт подгрузить тупо на комп, все работает...

Edited by max-wp
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy