https://kirin059.github.io/my_website/
πΈ html
<div class="clock-location">
<div class="main-clock"></div>
</div>
πΈ css
.clock-location{
width:100%;
height:160px;
margin: auto;
background-color:var( --text-color);
text-align: center;
vertical-align: center;
font-size: 100px;
font-weight: var( --weight-bold);
}
h1 {
font-size: var(--font-large);
font-weight: var(--weight-bold);
color:var(--point-color);
text-align: center;
}
πΈ javascript
const clock=document.querySelector('.main-clock');
function getTime() {
const time = new Date();
const minutes = time.getMinutes();
const hours = time.getHours();
const seconds = time.getSeconds();
clock.innerHTML = `${
hours <10 ? `0${hours}` : hours
}
:${
minutes < 10 ? `0${minutes}` : minutes
}
:${
seconds < 10 ? `0${seconds}` : seconds
}`
}
function init(){
getTime();
setInterval(getTime, 1000);
}
init();
ex)
(1) document.querySelector("#showResult").innerHTML = "κ²°κ³Όλ " + result + "μ
λλ€";
(2) document.querySelector("#showResult").innerHTML = `κ²°κ³Όλ ${result} μ
λλ€`;