일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 토큰경제
- #JAVASCRIPT
- mac terminal command
- html multimedia
- #다차원포인터
- 하이퍼레저패브릭
- html charset
- #binary
- #C++ has~a
- #bubbleSort
- #자바상속#자바이즈어#is~a
- #성적관리프로그램
- #1차원배열
- #CallByAddress
- docker example
- #3차원배열
- border-box
- #2차원배열
- html id
- relative path
- git flow
- html5 new tag
- html code
- html object
- html plug-in
- #android activity
- #C++ 연산자함수오버로딩
- html youtube
- hyperledger transaction
- html video
Archives
- Today
- Total
A sentimental robot
setTimeout 재귀함수 본문
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 |
<html>
<title>10.19</title>
<head>
<script language="javascript">
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);
}
</script>
</head>
<body onload="showNotice()">
<div id="divClock" class="clock"></div>
</body>
</html>
|
cs |
'Web' 카테고리의 다른 글
blockRightClick(),blockSelect() (0) | 2018.10.19 |
---|---|
img (0) | 2018.10.19 |
Date (0) | 2018.10.19 |
onload (0) | 2018.10.19 |
getElementsByTagName (0) | 2018.10.19 |