JavaScript

생활코딩 : JS 정리 -5. 낮/밤 버튼 (by 웹 어플리케이션 만들기)

식초 2020. 8. 29. 12:02

JS 낮/밤 버튼

1.낮/밤 버튼을 만든다.

  • <div >

<input type="button" value="white">

<input type="button" value="black">

  </div>

 

2.오른쪽 구석탱이로 옮긴다.

  • <div id="control">
  • #control { float: right; }  : CSS태그이므로 style태그에서 조정한다.

 

3.배경색/글자색이 다른 낮/밤 태그를 만든다.

  • body.white{                                   

     background-color: white;

     color:black;

}                                                          : CSS태그이므로 style태그에서 조정한다. class속성은 white이다.

 

  • body.black{

     background-color: black;

     color:white;

}                                                         : CSS태그이므로 style태그에서 조정한다. class속성은 black이다.

 

4.버튼을 누르면 바디태그의 속성이 달라진다.

  • <body id="target">
  • <input type="button" value="white" onclick="document.getElementById('target').className='white'">
  • <input type="button" value="black" onclick="document.getElementById('target').className='black'">  

 

5.완성된 4의 태그를 모든 페이지에 붙여넣기한다.