본문 바로가기
JavaScript/Vanilla JS

[바닐라JS로 크롬 앱 만들기] Making a JS Clock part One

by 코딩하는 붕어 2021. 2. 26.
반응형

[출처-유튜브 노마드 코더 Nomad Coders]

https://youtu.be/f0nBj0YMBUI

-이론 끝. 이제 momentum을 만들자

 

 

Google console 창으로 미리 출력해봄 

 

 

index.html

<!DOCTYPE html>
<html>
<head>
    <title>Something</title>
    <link rel="stylesheet" href="index.css" />
</head>
<body>
    <div class="js-clock">
        <h1>00:00</h1>
    </div>
    <script src="clock.js"></script>
</body>
</html>

 

clock.js

const clockContainer = document.querySelector(".js-clock"),
    clockTitle = clockContainer.querySelector("h1");

function getTime(){
    const date = new Date();
    const minute = date.getMinutes();
    const hours = date.getHours();
    const seconds = date.getSeconds();
    clockTitle.innerText = `${hours}:${minute}:${seconds}`;
}

function init(){
    getTime();
}

init();

반응형

댓글