<html>
<head>
<script language="JavaScript">
<!--
function init_clock()
{
var type, i, top, obj, clocks;
clocks = new Array();
for (i = 0, top = 0; i < init_clock.arguments.length; i += 2) {
obj = eval('document.'+init_clock.arguments[i]);
if (obj == null) continue;
if ((type = init_clock.arguments[i+1]) < 1 && 11 < type) continue;
clocks[top++] = obj;
clocks[top++] = type;
}
clocks.months = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July',
'August', 'September', 'October', 'November', 'December');
clocks.days = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday',
'Thursday', 'Friday', 'Saturday');
clocks.k_days = new Array('일', '월', '화', '수', '목', '금', '토');
clocks.ampm_str = new Array('AM', 'PM');
clocks.k_ampm_str = new Array('오전', '오후');
if (top > 0) {
document.clocks = clocks;
clock();
}
}
function clock()
{
var i, type, clocks, next_call, str, hour, ampm, now, year2, year4;
clocks = document.clocks;
if (clocks == null) return;
next_call = false;
for (i = 0; i < clocks.length; i += 2) {
obj = clocks[i];
type = clocks[i+1];
now = new Date();
year2 = now.getYear();
year4 = year2;
if (year2 < 1000) year4 = 1900 + year2;
if (year2 >= 100) year2 = year4;
if (type == 1 || type == 2) {
obj.value = clocks.months[now.getMonth()] + ' ' + now.getDate() + ', ' + year4;
if (type == 2)
obj.value = clocks.days[now.getDay()] + ', ' + obj.value;
} else if (type == 3 || type == 4) {
obj.value = year2 + '/' + (now.getMonth()+1) + '/' + now.getDate();
} else if (type == 5 || type == 6) {
obj.value = now.getDate() + '/' + (now.getMonth()+1) + '/' + year2;
} else if (type == 8 || type == 9 || type == 10 || type == 11) {
obj.value = year4 + '년 ' + (now.getMonth()+1) + '월 ' + now.getDate() + '일';
if (type == 9)
obj.value += ' ' + clocks.k_days[now.getDay()] + '요일';
}
if (type == 4 || type == 6 || type == 7 || type == 10 || type == 11) {
hour = now.getHours();
ampm = 0;
if (hour >= 12) {
if (hour > 12) hour -= 12;
ampm = 1;
}
if (type == 10 || type == 11) {
str = clocks.k_ampm_str[ampm] +' '+ hour+'시 '+ now.getMinutes() +'분';
if (type == 11) str += ' ' + now.getSeconds() +'초';
} else {
str = hour +':'+ ((now.getMinutes() < 10) ? '0'+now.getMinutes():now.getMinutes()) +':'+ ((now.getSeconds() < 10) ? '0'+now.getSeconds():now.getSeconds()) +' '+ clocks.ampm_str[ampm];
}
if (type == 7) obj.value = str;
else obj.value += ' ' + str;
}
if (type == 4 || type == 6 || type == 7 || type == 10 || type == 11)
next_call = true;
}
if (next_call)
window.setTimeout("clock();", 1000);
}
// -->
</script>
</head>
<body OnLoad="init_clock('mclock.textclock1', 11);">
아래 init_clock('form1.textclock1', 11) 함수의 밑줄친 부분의 숫자를 바꾸면 다양한 효과를 줄 수 있습니다.
<!--
init_clock(mclock.textclock1', 11) 함수의 밑줄친 부분의 숫자를 바꾸면 다음과 같은 효과를 줄 수 있습니다.
1 : December 4, 2000
2 : Tuesday, December 4, 2000
3 : 2000/12/4
4 : 2000/12/4 1:49:46 PM
5 : 4/12/2000
6 : 4/12/2000 1:50:40 PM
7 : 1:50:58 PM
8 : 2000년 12월 4일
9 : 2000년 12월 4일 화요일
10 : 2000년 12월 4일 오후 1시 51분
11 : 2000년 12월 4일 오후 1시 52분 6초
-->
<form name="mclock">
<input type="text" name="textclock1" size="30" style="border-style:none;">
</form>
</body>
</html><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
<head>
<script language="JavaScript">
<!--
function init_clock()
{
var type, i, top, obj, clocks;
clocks = new Array();
for (i = 0, top = 0; i < init_clock.arguments.length; i += 2) {
obj = eval('document.'+init_clock.arguments[i]);
if (obj == null) continue;
if ((type = init_clock.arguments[i+1]) < 1 && 11 < type) continue;
clocks[top++] = obj;
clocks[top++] = type;
}
clocks.months = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July',
'August', 'September', 'October', 'November', 'December');
clocks.days = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday',
'Thursday', 'Friday', 'Saturday');
clocks.k_days = new Array('일', '월', '화', '수', '목', '금', '토');
clocks.ampm_str = new Array('AM', 'PM');
clocks.k_ampm_str = new Array('오전', '오후');
if (top > 0) {
document.clocks = clocks;
clock();
}
}
function clock()
{
var i, type, clocks, next_call, str, hour, ampm, now, year2, year4;
clocks = document.clocks;
if (clocks == null) return;
next_call = false;
for (i = 0; i < clocks.length; i += 2) {
obj = clocks[i];
type = clocks[i+1];
now = new Date();
year2 = now.getYear();
year4 = year2;
if (year2 < 1000) year4 = 1900 + year2;
if (year2 >= 100) year2 = year4;
if (type == 1 || type == 2) {
obj.value = clocks.months[now.getMonth()] + ' ' + now.getDate() + ', ' + year4;
if (type == 2)
obj.value = clocks.days[now.getDay()] + ', ' + obj.value;
} else if (type == 3 || type == 4) {
obj.value = year2 + '/' + (now.getMonth()+1) + '/' + now.getDate();
} else if (type == 5 || type == 6) {
obj.value = now.getDate() + '/' + (now.getMonth()+1) + '/' + year2;
} else if (type == 8 || type == 9 || type == 10 || type == 11) {
obj.value = year4 + '년 ' + (now.getMonth()+1) + '월 ' + now.getDate() + '일';
if (type == 9)
obj.value += ' ' + clocks.k_days[now.getDay()] + '요일';
}
if (type == 4 || type == 6 || type == 7 || type == 10 || type == 11) {
hour = now.getHours();
ampm = 0;
if (hour >= 12) {
if (hour > 12) hour -= 12;
ampm = 1;
}
if (type == 10 || type == 11) {
str = clocks.k_ampm_str[ampm] +' '+ hour+'시 '+ now.getMinutes() +'분';
if (type == 11) str += ' ' + now.getSeconds() +'초';
} else {
str = hour +':'+ ((now.getMinutes() < 10) ? '0'+now.getMinutes():now.getMinutes()) +':'+ ((now.getSeconds() < 10) ? '0'+now.getSeconds():now.getSeconds()) +' '+ clocks.ampm_str[ampm];
}
if (type == 7) obj.value = str;
else obj.value += ' ' + str;
}
if (type == 4 || type == 6 || type == 7 || type == 10 || type == 11)
next_call = true;
}
if (next_call)
window.setTimeout("clock();", 1000);
}
// -->
</script>
</head>
<body OnLoad="init_clock('mclock.textclock1', 11);">
아래 init_clock('form1.textclock1', 11) 함수의 밑줄친 부분의 숫자를 바꾸면 다양한 효과를 줄 수 있습니다.
<!--
init_clock(mclock.textclock1', 11) 함수의 밑줄친 부분의 숫자를 바꾸면 다음과 같은 효과를 줄 수 있습니다.
1 : December 4, 2000
2 : Tuesday, December 4, 2000
3 : 2000/12/4
4 : 2000/12/4 1:49:46 PM
5 : 4/12/2000
6 : 4/12/2000 1:50:40 PM
7 : 1:50:58 PM
8 : 2000년 12월 4일
9 : 2000년 12월 4일 화요일
10 : 2000년 12월 4일 오후 1시 51분
11 : 2000년 12월 4일 오후 1시 52분 6초
-->
<form name="mclock">
<input type="text" name="textclock1" size="30" style="border-style:none;">
</form>
</body>
</html><div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]</div>
댓글 3개
Photofly
19년 전
좋네요...감사합니다...^^
19년 전
감사~~
18년 전
감사합니다. 잘 쓰겠습니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 430 | 19년 전 | 4088 | ||
| 429 | 19년 전 | 3285 | ||
| 428 | 19년 전 | 4121 | ||
| 427 | 19년 전 | 3464 | ||
| 426 | 19년 전 | 3095 | ||
| 425 | 19년 전 | 3389 | ||
| 424 | 19년 전 | 2430 | ||
| 423 | 19년 전 | 2844 | ||
| 422 | 19년 전 | 2334 | ||
| 421 | 19년 전 | 3700 | ||
| 420 | 19년 전 | 4726 | ||
| 419 | 19년 전 | 3779 | ||
| 418 |
|
19년 전 | 1726 | |
| 417 | 19년 전 | 2731 | ||
| 416 | 19년 전 | 2381 | ||
| 415 | 19년 전 | 2600 | ||
| 414 | 19년 전 | 4396 | ||
| 413 |
|
19년 전 | 2581 | |
| 412 | 19년 전 | 3029 | ||
| 411 |
|
19년 전 | 2978 | |
| 410 |
|
19년 전 | 3665 | |
| 409 |
|
19년 전 | 3623 | |
| 408 |
|
19년 전 | 1841 | |
| 407 | 19년 전 | 2212 | ||
| 406 | 19년 전 | 2767 | ||
| 405 | 19년 전 | 2434 | ||
| 404 | 19년 전 | 4291 | ||
| 403 | 19년 전 | 3289 | ||
| 402 |
NeoGenesis
|
19년 전 | 4080 | |
| 401 | 19년 전 | 2593 | ||
| 400 |
|
19년 전 | 2477 | |
| 399 | 19년 전 | 2941 | ||
| 398 | 19년 전 | 2474 | ||
| 397 | 19년 전 | 2774 | ||
| 396 | 19년 전 | 2460 | ||
| 395 | 19년 전 | 3166 | ||
| 394 | 19년 전 | 1701 | ||
| 393 | 19년 전 | 2979 | ||
| 392 | 19년 전 | 2240 | ||
| 391 | 19년 전 | 2171 | ||
| 390 | 19년 전 | 2265 | ||
| 389 | 19년 전 | 2632 | ||
| 388 | 19년 전 | 2129 | ||
| 387 | 19년 전 | 4468 | ||
| 386 |
|
19년 전 | 2673 | |
| 385 |
|
19년 전 | 2463 | |
| 384 | 19년 전 | 2983 | ||
| 383 | 19년 전 | 3037 | ||
| 382 | 19년 전 | 3089 | ||
| 381 |
|
19년 전 | 2624 | |
| 380 |
|
19년 전 | 3003 | |
| 379 | 19년 전 | 2540 | ||
| 378 | 19년 전 | 2196 | ||
| 377 | 19년 전 | 2771 | ||
| 376 | 19년 전 | 2463 | ||
| 375 |
|
19년 전 | 2548 | |
| 374 | 19년 전 | 3796 | ||
| 373 | 19년 전 | 3258 | ||
| 372 | 19년 전 | 4975 | ||
| 371 |
세은아빠2
|
19년 전 | 2403 | |
| 370 | 19년 전 | 4493 | ||
| 369 | 19년 전 | 3095 | ||
| 368 | 19년 전 | 2882 | ||
| 367 | 19년 전 | 3717 | ||
| 366 | 19년 전 | 2629 | ||
| 365 | 19년 전 | 3720 | ||
| 364 | 19년 전 | 3998 | ||
| 363 | 19년 전 | 3424 | ||
| 362 | 19년 전 | 3469 | ||
| 361 | 19년 전 | 4089 | ||
| 360 |
hwatta
|
19년 전 | 2347 | |
| 359 | 19년 전 | 5086 | ||
| 358 | 19년 전 | 3639 | ||
| 357 | 19년 전 | 2583 | ||
| 356 |
sdesign1s
|
19년 전 | 2265 | |
| 355 | 20년 전 | 2732 | ||
| 354 | 20년 전 | 3016 | ||
| 353 | 20년 전 | 2781 | ||
| 352 |
|
20년 전 | 5761 | |
| 351 |
|
20년 전 | 2691 | |
| 350 |
|
20년 전 | 4273 | |
| 349 |
hwatta
|
20년 전 | 2164 | |
| 348 | 20년 전 | 7297 | ||
| 347 | 20년 전 | 2404 | ||
| 346 | 20년 전 | 3490 | ||
| 345 | 20년 전 | 4292 | ||
| 344 | 20년 전 | 2618 | ||
| 343 | 20년 전 | 3907 | ||
| 342 | 20년 전 | 3050 | ||
| 341 | 20년 전 | 4076 | ||
| 340 |
|
20년 전 | 5111 | |
| 339 |
|
20년 전 | 4215 | |
| 338 | 20년 전 | 5845 | ||
| 337 | 20년 전 | 2023 | ||
| 336 |
|
20년 전 | 3300 | |
| 335 |
|
20년 전 | 3526 | |
| 334 |
|
20년 전 | 2908 | |
| 333 |
hwatta
|
20년 전 | 2421 | |
| 332 | 20년 전 | 4643 | ||
| 331 | 20년 전 | 2259 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기