Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Infresh
- 공헌감
- 이펙티브 자바
- apache kafka
- docker
- kubernetes
- try-with-resources
- 월칙
- java
- HTML
- colllection
- 참조 계수
- CSS
- sentry
- 칭기즈칸의 위대한 장군 수부타이
- 부자의그릇
- 레퍼런스 복사
- 과제의 분리
- 비메모리 자원
- node
- 히든 스토리
- try width resources
- 쿠버네티스
- 아웃풋법칙
- Container
- ESG
- 뉴 컨피던스
- 모두가 기다리는 사람
- 수부타이
- 도파민형 인간
Archives
- Today
- Total
Hi
svg를 웹폰트로 만드는 법 본문
svg를 웹폰트로 만드는 법
npm install webfonts-generator --save
src 폴더에 test-input-icons(svg파일을 다운받아 넣는 곳)를 만든다.
icon-font-dest(svg파일이 웹폰트로 변환되는 곳)도 만든다.
build 폴더에 webfont.generator.js 파일을 만들고
const webfontsGenerator = require('webfonts-generator');
const fs = require('fs');
const _ = require('lodash');
const iconPath = 'src/test-input-icons';
const files = _.chain(fs.readdirSync(iconPath))
.filter(f => f.endsWith('.svg'))
.map(f => `${iconPath}/${f}`)
.value();
console.log(files);
webfontsGenerator({
files,
dest: 'src/icon-font-dest/',
html: true, // true이면 html 미리보기를 생성해줍니다.
templateOptions: {
baseSelector: '.icon-font', // 기본으로 추가될 클래스 이름
classPrefix: 'icon-font-' // 위 벡터 이미지 이름과 조합하여 추가될 클래스 이름(예: y-icon-download)
}
}, function(error) {
if (error) {
console.log('Fail!', error);
} else {
console.log('Done!');
}
});
를 작성한다
package.json 의 scripts 에
"build-icons": "node ./build/webfont.generator.js",
를 입력하고 npm run build-icons를 실행한다.
그렇게 하면, icon-font-dest 폴더에 파일들이 생성이 되고, iconfont.css 파일 안의 클래스로 사용하면 된다.
ex)
.icon-font.icon-font-baseline-autorenew-24px
'WEB(웹)' 카테고리의 다른 글
host 호스트 (0) | 2018.11.18 |
---|---|
ip, domain, url (0) | 2018.11.18 |
웹사이트, 레퍼런스 동영상, 등등 판매하는 사이트 (0) | 2018.09.29 |
.babelrc (0) | 2018.09.27 |
codepen (0) | 2018.08.30 |