반응형
아스키아트라고 한다.
이런식으로 관리자 콘솔을 꾸미는 건데, 128개의 문자로 만드는 그림문자이다.
Text를 ASCII Art로 바꿔주는 웹 사이트 하나를 소개한다.
http://patorjk.com/software/taag
크롬 콘솔창에 이미지 출력하는 방법
console.log('%c ', 'font-size: 100px; background: url(https://tistory3.daumcdn.net/tistory/3449381/skinSetting/38447d486d6e481999ffd7bc15fe96b4) no-repeat;');
총합본
window.onload = function () {
console.clear();
console.log('%c ', 'font-size: 100px;background-size:contain!important; background: url(https://tistory3.daumcdn.net/tistory/3449381/attach/4da6822a2e3f4c2694986f16036cc8c3) no-repeat;');
console.log("\n# _ _ _ _____ \n" +
"# ( ) ( ) _(_ ) (___ ) \n" +
"# | |/'/'(_)| | | | _ _ __ __ _ _ ___ \n" +
"# | , < | || | _ | | /'_` ) /'__`\ /'__`\( ) ( )/' _ `\ \n" +
"# | |\`\ | || | ( )_| |( (_| |( ___/( ___/| (_) || ( ) | \n" +
"# (_) (_)(_|___) `\___/'`\__,_)`\____)`\____)`\___/'(_) (_) \n" +
"# \n" +
"# ")
}
반응형
'구버전 팁' 카테고리의 다른 글
Introduction (0) | 2020.08.28 |
---|---|
깃허브 (0) | 2020.08.28 |
주피터 노트북 커스텀 (0) | 2020.02.06 |
정규표현식 강의 블로그 (0) | 2020.02.04 |
추천사이트 (0) | 2019.12.18 |