본문 바로가기
카테고리 없음

버튼 누르면 아래 창 띄우기

by 인디코더 2018. 11. 1.

W3.CSS로 한 아코디언 효과 버튼 누르면 아래 창 나오기


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<body>
<div class="w3-container">
 
<h2>Accordions</h2>
<p>An accordion is used to show (and hide) HTML content:</p>
  
<button onclick="myFunction('Demo1')" class="w3-button w3-xlarge w3-circle w3-teal">+</button>
<div id="Demo1" class="w3-container w3-hide">
  <h4>Section 1</h4>
  <p>Some text..</p>
</div>
 
</div>
 
<script>
function myFunction(id) {
    var x = document.getElementById(id);
    if (x.className.indexOf("w3-show"== -1) {
        x.className += " w3-show";
    } else { 
        x.className = x.className.replace(" w3-show""");
    }
}
</script>
</body>
</html>
cs


결과




반응형