일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- git flow
- html id
- html object
- html multimedia
- #2차원배열
- html video
- mac terminal command
- #성적관리프로그램
- #CallByAddress
- #자바상속#자바이즈어#is~a
- html5 new tag
- #다차원포인터
- 하이퍼레저패브릭
- #1차원배열
- #C++ 연산자함수오버로딩
- #bubbleSort
- #android activity
- #JAVASCRIPT
- relative path
- #C++ has~a
- docker example
- hyperledger transaction
- 토큰경제
- border-box
- html plug-in
- #3차원배열
- html youtube
- #binary
- html charset
- html code
- Today
- Total
A sentimental robot
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 32 33 34 35 36 37 10.19 function blockRightClick() { alert("오른쪽 버튼을 사용할 수 없습니다."); return false; } function blockSelect() { alert("내용을 선택할 수 없습니다."); return false; } 마우스 오른쪽 버튼과 내용 선택 막기 마우스 오른쪽 버튼을 클릭하거나 드래그해서 내용을 선택해 보세요. Colored by Color Scripter cs
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 32 33 34 10.19 var imgArr=new Array(); imgArr[0]="01.jpg"; imgArr[1]="02.jpg"; imgArr[2]="03.jpg"; imgArr[3]="04.jpg"; function showImage(){ var imgNum=Math.round(Math.random()*3); var obj=document.getElementById("divClock"); obj.src=imgArr[imgNum]; } Colored by Color Scripter cs
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 32 33 34 10.19 var notice = "안녕하세요?" var index = 0; function showNotice() { index++; var div = document.getElementById("divClock"); if (index > notice.length) { div.innerText = ""; index = 0; } else div.innerText = notice.substr(0, index); setTimeout(showNotice, 500); } Colored by Color Scripter cs
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 32 10.19 function showClock() { var currentDate = new Date(); var divClock = document.getElementById("divClock"); if (currentDate.getHours() >= 12) var a = "오후" else a = "오전" var msg = "현재 시간" + a + currentDate.getHours() + "시" + currentDate.getMinutes() + "분" + currentDate.getSeconds() + "초"; divClock.innerText ..