반응형
<script>
function printClock() {
var clock = document.getElementById("clock"); // 출력할 장소 선택
var currentDate = new Date(); // 현재시간
var calendar = currentDate.getFullYear() + "-" + (currentDate.getMonth()+1) + "-" + currentDate.getDate() // 현재 날짜
var amPm = 'AM'; // 초기값 AM
var currentHours = addZeros(currentDate.getHours(),2);
var currentMinute = addZeros(currentDate.getMinutes() ,2);
var currentSeconds = addZeros(currentDate.getSeconds(),2);
if(currentHours >= 12){ // 시간이 12보다 클 때 PM으로 세팅, 12를 빼줌
amPm = 'PM';
currentHours = addZeros(currentHours - 12,2);
}
if(currentSeconds >= 50){// 50초 이상일 때 색을 변환해 준다.
currentSeconds = '<span style="color:#de1951;">'+currentSeconds+'</span>'
}
clock.innerHTML = currentHours+":"+currentMinute+":"+currentSeconds +" <span style='font-size:50px;'>"+ amPm+"</span>"; //날짜를 출력해 줌
setTimeout("printClock()",1000); // 1초마다 printClock() 함수 호출
}
function addZeros(num, digit) { // 자릿수 맞춰주기
var zero = '';
num = num.toString();
if (num.length < digit) {
for (i = 0; i < digit - num.length; i++) {
zero += '0';
}
}
return zero + num;
}
</script>
<body onload="printClock()">
<div style="border:1px solid #dedede; width:600px; height:250px; line-height:250px; color:#666;font-size:100px; text-align:center;" id="clock">
</div>
</body>
내가 만든건 아니다....ㅡ.ㅡ;;
반응형
'javascript&jquery' 카테고리의 다른 글
jqeury 라디오박스 체크여부, 라디오박스 값 가져오기, 부모창에 값 전달하기 (0) | 2018.06.18 |
---|---|
ajax 여러 옵션들... (0) | 2018.06.18 |
ajax 1초마다 한번씩 데이터 가져오기 (0) | 2018.06.18 |
jquery ajax 웹페이지 url 화면 결과값 가져오기 (0) | 2018.06.18 |
javascript 1초마다 자바스크립트 함수 호출하기 (0) | 2018.06.18 |