<script>
function nextRandomInteger(limit) {
return Math.round(Math.random() * limit);
}
var alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
function randomAlphabet() {
return alphabet.charAt(nextRandomInteger(25));
}
function randomSpeed(maxSpeed) {
return Math.random() * maxSpeed - Math.random() * maxSpeed;
}
var canvasWidth = 700;
var canvasHeight = 500;
function MovingText() {
function nextRandomInteger(limit) {
return Math.round(Math.random() * limit);
}
var alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
function randomAlphabet() {
return alphabet.charAt(nextRandomInteger(25));
}
function randomSpeed(maxSpeed) {
return Math.random() * maxSpeed - Math.random() * maxSpeed;
}
var canvasWidth = 700;
var canvasHeight = 500;
function MovingText() {
this.x = nextRandomInteger(canvasWidth);
this.y = nextRandomInteger(canvasHeight);
this.vX = randomSpeed(10);
this.vY = randomSpeed(10);
this.body = document.createElement('h1');
this.body.innerHTML = randomAlphabet();
this.body.style.position = 'absolute';
MovingText.prototype.move = function () {
}
this.y = nextRandomInteger(canvasHeight);
this.vX = randomSpeed(10);
this.vY = randomSpeed(10);
this.body = document.createElement('h1');
this.body.innerHTML = randomAlphabet();
this.body.style.position = 'absolute';
MovingText.prototype.move = function () {
}
if (this.x < 0 || this.x > canvasWidth) {this.vX *= -1;}
if (this.y < 0 || this.y > canvasHeight) {this.vY *= -1;}
this.x += this.vX;
this.y += this.vY;
this.body.style.left = this.x + 'px';
this.body.style.top = this.y + 'px';
};
window.onload = function () {
if (this.y < 0 || this.y > canvasHeight) {this.vY *= -1;}
this.x += this.vX;
this.y += this.vY;
this.body.style.left = this.x + 'px';
this.body.style.top = this.y + 'px';
};
window.onload = function () {
var movingTexts = [];
for (var i = 0; i < 100; i++) {
movingTexts.push(new MovingText());
}
setInterval(function () {
for (var i in movingTexts) {
movingTexts[i].move();
}
}, 1000 / 60);
};
</script>
for (var i = 0; i < 100; i++) {
movingTexts.push(new MovingText());
}
setInterval(function () {
for (var i in movingTexts) {
movingTexts[i].move();
}
}, 1000 / 60);
};
</script>
오류도 없는데 빈화면으로밖에 나오질않네요...
뭐가문제인가요?
댓글 2개
jay420
13년 전
소스가 약간씩 모자라거나 열고 닫는 부분이 잘못 되어있네요.
소스를 작성하실때 function 의 시작과 끝을 잘 파악하셔야 하고 무조건 따라 작성하시기 보다는 코드의 흐름을 파악하시고 작성하시는것이 좋을 것 같습니다.
완성소스는 아래와 같습니다.
(참고문헌 : 모던 웹을 위한 javascript jQuery 입문 (윤인성 저) )
<!DOCTYPE html>
<html>
<head>
<script>
function nextRandomInteger(limit) {
return Math.round(Math.random() * limit);
}
var alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
function randomAlphabet() {
return alphabet.charAt(nextRandomInteger(25));
}
function randomSpeed(maxSpeed) {
return Math.random() * maxSpeed - Math.random() * maxSpeed;
}
</script>
<script>
var canvasWidth = 700;
var canvasHeight = 500;
function MovingText() {
this.x = nextRandomInteger(canvasWidth);
this.y = nextRandomInteger(canvasHeight);
this.vX = randomSpeed(10);
this.vY = randomSpeed(10);
this.body = document.createElement('h1');
this.body.innerHTML = randomAlphabet();
this.body.style.position = 'absolute';
document.body.appendChild(this.body);
}
MovingText.prototype.move = function () {
if (this.x < 0 || this.x > canvasWidth) {this.vX *= -1;}
if (this.y < 0 || this.y > canvasHeight) {this.vY *= -1;}
this.x += this.vX;
this.y += this.vY;
this.body.style.left = this.x + 'px';
this.body.style.top = this.y + 'px';
};
</script>
<script>
window.onload = function () {
var movingTexts = [];
for (var i = 0; i < 100; i++) {
movingTexts.push(new MovingText());
}
setInterval(function () {
for (var i in movingTexts) {
movingTexts[i].move();
}
}, 1000 / 60);
};
</script>
</head>
<body>
</body>
</html>
소스를 작성하실때 function 의 시작과 끝을 잘 파악하셔야 하고 무조건 따라 작성하시기 보다는 코드의 흐름을 파악하시고 작성하시는것이 좋을 것 같습니다.
완성소스는 아래와 같습니다.
(참고문헌 : 모던 웹을 위한 javascript jQuery 입문 (윤인성 저) )
<!DOCTYPE html>
<html>
<head>
<script>
function nextRandomInteger(limit) {
return Math.round(Math.random() * limit);
}
var alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
function randomAlphabet() {
return alphabet.charAt(nextRandomInteger(25));
}
function randomSpeed(maxSpeed) {
return Math.random() * maxSpeed - Math.random() * maxSpeed;
}
</script>
<script>
var canvasWidth = 700;
var canvasHeight = 500;
function MovingText() {
this.x = nextRandomInteger(canvasWidth);
this.y = nextRandomInteger(canvasHeight);
this.vX = randomSpeed(10);
this.vY = randomSpeed(10);
this.body = document.createElement('h1');
this.body.innerHTML = randomAlphabet();
this.body.style.position = 'absolute';
document.body.appendChild(this.body);
}
MovingText.prototype.move = function () {
if (this.x < 0 || this.x > canvasWidth) {this.vX *= -1;}
if (this.y < 0 || this.y > canvasHeight) {this.vY *= -1;}
this.x += this.vX;
this.y += this.vY;
this.body.style.left = this.x + 'px';
this.body.style.top = this.y + 'px';
};
</script>
<script>
window.onload = function () {
var movingTexts = [];
for (var i = 0; i < 100; i++) {
movingTexts.push(new MovingText());
}
setInterval(function () {
for (var i in movingTexts) {
movingTexts[i].move();
}
}, 1000 / 60);
};
</script>
</head>
<body>
</body>
</html>
13년 전
감사합니다!
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 58 | ||
| 8229 | 9년 전 | 57 | ||
| 8228 |
커네드커네드
|
9년 전 | 103 | |
| 8227 | 9년 전 | 111 | ||
| 8226 | 9년 전 | 147 | ||
| 8225 | 9년 전 | 136 | ||
| 8224 | 9년 전 | 137 | ||
| 8223 | 9년 전 | 101 | ||
| 8222 |
|
9년 전 | 163 | |
| 8221 | 9년 전 | 78 | ||
| 8220 | 9년 전 | 83 | ||
| 8219 | 9년 전 | 89 | ||
| 8218 | 9년 전 | 120 | ||
| 8217 |
star3840
|
9년 전 | 101 | |
| 8216 | 9년 전 | 139 | ||
| 8215 | 9년 전 | 94 | ||
| 8214 | 9년 전 | 211 | ||
| 8213 | 9년 전 | 143 | ||
| 8212 | 9년 전 | 62 | ||
| 8211 | 9년 전 | 224 | ||
| 8210 | 9년 전 | 225 | ||
| 8209 | 9년 전 | 322 | ||
| 8208 | 9년 전 | 194 | ||
| 8207 | 9년 전 | 204 | ||
| 8206 |
|
9년 전 | 171 | |
| 8205 | 9년 전 | 152 | ||
| 8204 | 9년 전 | 115 | ||
| 8203 | 9년 전 | 212 | ||
| 8202 | 9년 전 | 131 | ||
| 8201 | 9년 전 | 167 | ||
| 8200 | 9년 전 | 140 | ||
| 8199 | 9년 전 | 191 | ||
| 8198 | 9년 전 | 160 | ||
| 8197 | 9년 전 | 145 | ||
| 8196 | 9년 전 | 529 | ||
| 8195 | 9년 전 | 139 | ||
| 8194 | 9년 전 | 270 | ||
| 8193 | 9년 전 | 140 | ||
| 8192 | 9년 전 | 171 | ||
| 8191 | 9년 전 | 121 | ||
| 8190 | 9년 전 | 114 | ||
| 8189 | 9년 전 | 171 | ||
| 8188 | 9년 전 | 116 | ||
| 8187 | 9년 전 | 122 | ||
| 8186 | 9년 전 | 134 | ||
| 8185 | 9년 전 | 297 | ||
| 8184 | 9년 전 | 90 | ||
| 8183 | 9년 전 | 310 | ||
| 8182 | 9년 전 | 149 | ||
| 8181 | 9년 전 | 115 | ||
| 8180 | 9년 전 | 680 | ||
| 8179 | 9년 전 | 475 | ||
| 8178 | 9년 전 | 282 | ||
| 8177 |
kiplayer
|
9년 전 | 294 | |
| 8176 | 9년 전 | 335 | ||
| 8175 | 9년 전 | 206 | ||
| 8174 | 9년 전 | 215 | ||
| 8173 | 9년 전 | 325 | ||
| 8172 | 9년 전 | 176 | ||
| 8171 | 9년 전 | 164 | ||
| 8170 | 9년 전 | 283 | ||
| 8169 |
커네드커네드
|
9년 전 | 246 | |
| 8168 | 9년 전 | 303 | ||
| 8167 | 9년 전 | 307 | ||
| 8166 | 9년 전 | 219 | ||
| 8165 | 9년 전 | 148 | ||
| 8164 | 9년 전 | 283 | ||
| 8163 | 9년 전 | 270 | ||
| 8162 | 9년 전 | 277 | ||
| 8161 | 9년 전 | 277 | ||
| 8160 |
|
9년 전 | 473 | |
| 8159 | 9년 전 | 394 | ||
| 8158 | 9년 전 | 217 | ||
| 8157 | 9년 전 | 350 | ||
| 8156 | 9년 전 | 263 | ||
| 8155 | 9년 전 | 237 | ||
| 8154 |
00년생용띠
|
9년 전 | 581 | |
| 8153 | 9년 전 | 216 | ||
| 8152 |
|
9년 전 | 391 | |
| 8151 | 9년 전 | 387 | ||
| 8150 | 9년 전 | 482 | ||
| 8149 |
Jangfolk
|
9년 전 | 321 | |
| 8148 | 9년 전 | 153 | ||
| 8147 | 9년 전 | 359 | ||
| 8146 | 9년 전 | 417 | ||
| 8145 | 9년 전 | 349 | ||
| 8144 | 9년 전 | 319 | ||
| 8143 | 9년 전 | 172 | ||
| 8142 | 9년 전 | 416 | ||
| 8141 | 9년 전 | 362 | ||
| 8140 | 9년 전 | 913 | ||
| 8139 | 9년 전 | 240 | ||
| 8138 |
전갈자리남자
|
9년 전 | 378 | |
| 8137 | 9년 전 | 364 | ||
| 8136 | 9년 전 | 720 | ||
| 8135 |
|
9년 전 | 775 | |
| 8134 |
PlayPixel
|
9년 전 | 486 | |
| 8133 |
|
9년 전 | 423 | |
| 8132 | 9년 전 | 436 | ||
| 8131 | 9년 전 | 796 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기