🎨 ν˜„μž¬μ‹œκ°„ ν‘œμ‹œ

kirin.logΒ·2020λ…„ 11μ›” 20일
2

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);
}
/* μ‹œκ³„ ν‘œμ‹œ(00:00:00) */
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 = hour + ":" + minutes + ":" + seconds;
      clock.innerHTML = `${    /* μ‹œκ°„μ΄ λ‘μžλ¦¬λ‘œ λ‚˜μ˜€κ²Œ ν•˜λŠ” λͺ…λ Ήλ¬Έ */
        hours <10 ? `0${hours}` : hours
        }
        :${    
        minutes < 10 ? `0${minutes}` : minutes
        }
        :${
        seconds < 10 ? `0${seconds}` : seconds
        }`
    }

    function init(){
        getTime();
        setInterval(getTime, 1000);   /* 1μ΄ˆλ§ˆλ‹€ μ‹œκ³„ μ—…λ°μ΄νŠΈ */
    }

    init();

/* 
`${μ§€μ •λœ ν•¨μˆ˜λ₯Ό λΆˆλŸ¬μ˜€λŠ” 것}`

ex)
function color(red, blue){
  return ( `I like ${red} and ${blue}`)
}

document.write(color("peru", "purple"));   // I like peru and purple
=> μœ„μ™€ 같이 인자 x,yλ₯Ό 지정해쀀 λ’€ ν•΄λ‹Ή 값을 리턴할 λ•Œ, ${λ¦¬ν„΄μΈμž}λ₯Ό λ„£μ–΄μ€€λ‹€.
ES6 버전뢀터 μ‚¬μš© κ°€λŠ₯ν•œ ν…œν”Œλ¦Ώ λ¬Έμžμ—΄λ‘œ, λ°± 쿼트(``)둜 λ¬Άκ³  λ³€μˆ˜λŠ” ${} 사이에 ν‘œμ‹œν•˜μ—¬ 좜λ ₯ν•œλ‹€.
*/

ex)
(1) document.querySelector("#showResult").innerHTML = "κ²°κ³ΌλŠ” " + result + "μž…λ‹ˆλ‹€";
//showResult λΌλŠ” id 의 곡간 λ‚΄μš© μ•ˆμ—(inner) μžˆλŠ” 것을 슀트링과 result둜 λ³€κ²½ν•œλ‹€
(2) document.querySelector("#showResult").innerHTML = `κ²°κ³ΌλŠ” ${result} μž…λ‹ˆλ‹€`;
//λ°± 쿼트(``)둜 λ¬Άκ³  λ³€μˆ˜λŠ” ${} 사이에 ν‘œμ‹œν•˜μ—¬ 좜λ ₯


/*
? λŠ” if 와 κ°™μ€κ°œλ…,  : λŠ” or κ³Ό κ°™μ€κ°œλ…
${ hour < 10 ? `0${hour}` : hours }
hourκ°€ 10보닀 μž‘μœΌλ©΄(if) `0을 hourμ•žμ— λΆ™μ—¬μ£Όκ³ ` κ·Έλ ‡μ§€μ•ŠμœΌλ©΄(:) κ·Έλƒ₯ hourλ₯Ό μ¨μ€€λ‹€λŠ” 뜻 
*/
profile
boma91@gmail.com

0개의 λŒ“κΈ€

κ΄€λ ¨ μ±„μš© 정보