06/30 25차 타이머 과제

Noh Sinyoung·2023년 6월 30일
0

과제

목록 보기
25/27
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="0630 타이머 과제.css">
</head>
<body>
    <div class="container">
        <div class="label">시간 설정 <input type="number"><button>시작</button></div>
        <h1>남은 시간</h1>

        <span class="time">60</span><span class="s">s</span>

        <p>초 입력하고 버튼을 누르면, 입력한 시간대로 타이머가 작동한다</p>
    </div>


    <script>
        let= document.querySelector(".time")
        let 버튼 = document.querySelector("button")
        let 입력 = document.querySelector("input")
        let sec = 0
         
        let 타이머함수

        버튼.addEventListener("click", function(){
            clearInterval(타이머함수)
            let sec = 0
            sec = 입력.value
            if (입력.value <= 0) {
                sec = 0
            }.textContent = sec 
            타이머함수 = setInterval(
                function 타이머() {
                if (sec <= 0) {
                    sec = 1
                }
                sec -= 1.textContent = sec 
                if (sec == 0) {
                    clearInterval(타이머함수)
                }
            }, 1000)
        })

    </script>
</body>
</html>

=====================================================================================================================

*{margin: 0; padding: 0; box-sizing: border-box;}

.container {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    text-align: center;
}
.container > div {
    margin-left: auto;
    margin-right: auto;
}
.container > h1 {
    font-size: 40pt;
    margin: 30px;
}
.container > p {
    font-size: 20pt;
    font-weight: bold;
}


.label {
    width: 500px;
    font-size: 20pt;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time {
    font-size: 130pt;
    font-weight: bold;
}

.s {
    font-size: 40pt;
    font-weight: bold;
}

input {
    border: 1px solid rgb(101, 187, 135);
    width: 130px;
    height: 50px;
    border-radius: 10px;
    margin-left: 20px;
    font-size: 20pt;
    padding-left: 20px;
}

button {
    background-color: rgb(101, 187, 135);
    border-radius: 10px;
    border: none;
    width: 60px;
    height: 50px;
    color: white;
    font-size: 12pt;
    margin-left: 20px;
}

button:hover {
    background-color: rgb(93, 169, 123);
}
button:active {
    background-color: rgb(80, 145, 106);
}

0개의 댓글