미디어위키:Webfont-Pretendard.js: 두 판 사이의 차이

청소년정책위키
(새 문서: var fontLink = document.createElement('link'); fontLink.rel = 'stylesheet'; fontLink.as = 'style'; fontLink.href = 'https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable-dynamic-subset.css'; document.head.appendChild(fontLink);)
 
편집 요약 없음
 
(같은 사용자의 중간 판 8개는 보이지 않습니다)
1번째 줄: 1번째 줄:
var fontLink = document.createElement('link');
var link = document.createElement('link');
fontLink.rel = 'stylesheet';
link.rel = 'stylesheet';
fontLink.as = 'style';
link.as = 'style';
fontLink.href = 'https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable-dynamic-subset.css';
link.href = "https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css";
document.head.appendChild(fontLink);
document.head.appendChild(link);
 
/* [[분류:위키 인터페이스 자바스크립트]] */

2024년 2월 13일 (화) 19:19 기준 최신판

var link = document.createElement('link');
link.rel = 'stylesheet';
link.as = 'style';
link.href = "https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css";
document.head.appendChild(link);

/* [[분류:위키 인터페이스 자바스크립트]] */