반응형
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 | 31 |
Tags
- react tailwindcss
- mysql broken install
- 리액트
- PHP
- mysql 삭제
- mysql error
- javascript
- Python
- mysql uninstall
- 리액트 tailwindcss
- 안드로이드
- mysql
- Docker
- mysql 재설치
- 리액트 문법
- 리액트 tailwind css
- mysql fix install
- mysql purge
- react 기초
- 도커
- next.js tailwind css
- Docker ubuntu
- react tailwind css
- react
- mysql 재설치 명령어
- next.js tailwindcss
- react typescript
- next.js css framework
- 리눅스
- Android
Archives
- Today
- Total
Developer_hong
[JavaScript] 자바스크립트 콘솔 이름 출력 방법 소스 본문
반응형
대다수의 커뮤니티, 포털 사이트에 접속하여
크롬에서 F12를 눌러 개발자 창을 띄우게 되면
이러한 문구들을 볼 수 있다
티스토리에서 Chrome에서 F12 개발자 모드 실행하면 다음과 같이 TISTORY가 나온다
본인만의 홈페이지에도 추가하고 싶다면
HTML에 해당 스크립트를 추가하면 된다
<script type="text/javascript">
if(window.console!=undefined){
setTimeout(console.log.bind(console,"%cDEVELOPER_HONG","font:8em Arial;color:#EC6521;font-weight:bold"),0);
setTimeout(console.log.bind(console,"%cTISTORY","font:8em Arial;color:#EC6521;font-weight:bold"),0);
setTimeout(console.log.bind(console,"%cDeveloper_hong","font:2em sans-serif;color:#333;"),0);
}
</script>
콘솔창에 테스트 결과
다음과 같이 내 티스토리 이름이 출력된다.
반응형
'프로그래밍 > Java.Script' 카테고리의 다른 글
map, reduce, reduceRight (0) | 2022.11.04 |
---|---|
JavaScript Array Filter (0) | 2022.11.03 |
ES5, ES6, 호이스팅(hoisting) (0) | 2022.05.28 |