특정 컴퓨터에서만 웹폰트가 적용이 안되는 현상이 뭘까요??

특정 컴퓨터에서만 웹폰트가 적용이 안되는 현상이 뭘까요??

QA

특정 컴퓨터에서만 웹폰트가 적용이 안되는 현상이 뭘까요??

답변 4

본문

회사에 컴퓨터 5대 정도로 확인을해봤는데..

동일한 익스버전으로 확인했습니다

근데 한곳에서만 폰트적용이 안되더라고요.. 

이런경우는 뭐가문제일까요?? 

이 질문에 댓글 쓰기 :

답변 4

저도 이런경우가 워낙 많아서..

/fonts 폴더 만들어서 업로드 후 css 에서 import 해서 쓰는 방법으로

하고 있습니다.

도움 되는 댓글이 아니라 죄송합니다. ㅠㅠ

답변감사합니다ㅠㅠ

@import url("http://fonts.googleapis.com/earlyaccess/nanumgothic.css");
@import url("http://fonts.googleapis.com/earlyaccess/malgungothic.css");
@import url("http://fonts.googleapis.com/earlyaccess/nanummyeongjo.css");

@font-face {
font-family:MalgunGothic_eot;
src:url('/fonts/MalgunGothic.eot');
}
@font-face {
font-family:MalgunGothic_ttf;
src:url('/fonts/MalgunGothic.ttf');
}
@font-face {
font-family:NanumGothic.eot;
src:url('/fonts/NanumGothic.eot');
}
@font-face {
font-family:NanumGothic.woff;
src:url('/fonts/NanumGothic.woff');
}
@font-face {
font-family:NanumGothicBold.woff;
src:url('/fonts/NanumGothicBold.woff');
}

말씀하신방법이 혹시 이거인가요??

많이 쓰는 Noto Sans 라면..


<script src="//ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js"></script>
<script>
  WebFont.load({
    google: {
      families: ['Noto Sans KR']
    }
  });
</script>

 

적용한번 해보세요!

설마,, 그 안나오는 분 컴퓨터에 맑은고딕 폰트가 없을리가요? ㅎㅎㅎ

맑은고딕은 기본서체 아니였던가요 -_-;;

MalgunGothic 으로 한번 바꿔보세요~ 

위 소스는 사실 FOUT 증상을 없애기 위한,, 폰트로더 이긴한데,

도움되시길 바라며 올린거긴합니다 ㅠ

답변을 작성하시기 전에 로그인 해주세요.
전체 3
© SIRSOFT
현재 페이지 제일 처음으로