Html,Css,Js를 사용한 아코디언
2480 단어 htmlcssjavascript100daysofcode
HTML 코드:
버튼을 생성하고 아래의 div에 내용을 입력해야 합니다.
<h1>Accordion</h1>
<h3>Click the button</h3>
<div class="accordion">
<button type="button" class="acc">What is Html?</button>
<div class="panel">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat.
</p>
</div>
</div>
<div class="accordion">
<button type="button" class="acc">What is CSS?</button>
<div class="panel">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat.
</p>
</div>
</div>
Js 코드:
클래스 이름을 사용하여 버튼에 액세스하고 모든 버튼에 이벤트 리스너 '클릭'을 추가합니다.
nextSiblingElement를 사용하여 콘텐츠에 액세스하고 콘텐츠를 표시하는 조건을 작성합니다.
let acc = document.getElementsByClassName('acc');
for(let i=0; i< acc.length; i++){
acc[i].addEventListener('click', function() {
this.classList.toggle("active");
let panel = this.nextElementSibling;
if(panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
})
}
CSS 코드:
before 속성을 사용하여 더하기 및 빼기 기호를 추가합니다.
body {
height: 100vh;
background-color: #eee;
}
button {
text-align: left;
padding: 10px;
margin-right: 5px;
cursor: pointer;
width: 50%;
border-color: 1px solid #ccc;
}
button::before {
content: "+";
padding: 10px;
}
.active {
background-color: #2c2b2b;
color: #fff;
}
.active::before {
content: "-";
padding: 10px;
}
.panel {
display: none;
width: 50%;
padding-left: 10px;
}
Reference
이 문제에 관하여(Html,Css,Js를 사용한 아코디언), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/umapreethidev/accordion-using-html-css-js-5623
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
<h1>Accordion</h1>
<h3>Click the button</h3>
<div class="accordion">
<button type="button" class="acc">What is Html?</button>
<div class="panel">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat.
</p>
</div>
</div>
<div class="accordion">
<button type="button" class="acc">What is CSS?</button>
<div class="panel">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat.
</p>
</div>
</div>
클래스 이름을 사용하여 버튼에 액세스하고 모든 버튼에 이벤트 리스너 '클릭'을 추가합니다.
nextSiblingElement를 사용하여 콘텐츠에 액세스하고 콘텐츠를 표시하는 조건을 작성합니다.
let acc = document.getElementsByClassName('acc');
for(let i=0; i< acc.length; i++){
acc[i].addEventListener('click', function() {
this.classList.toggle("active");
let panel = this.nextElementSibling;
if(panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
})
}
CSS 코드:
before 속성을 사용하여 더하기 및 빼기 기호를 추가합니다.
body {
height: 100vh;
background-color: #eee;
}
button {
text-align: left;
padding: 10px;
margin-right: 5px;
cursor: pointer;
width: 50%;
border-color: 1px solid #ccc;
}
button::before {
content: "+";
padding: 10px;
}
.active {
background-color: #2c2b2b;
color: #fff;
}
.active::before {
content: "-";
padding: 10px;
}
.panel {
display: none;
width: 50%;
padding-left: 10px;
}
Reference
이 문제에 관하여(Html,Css,Js를 사용한 아코디언), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/umapreethidev/accordion-using-html-css-js-5623
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
body {
height: 100vh;
background-color: #eee;
}
button {
text-align: left;
padding: 10px;
margin-right: 5px;
cursor: pointer;
width: 50%;
border-color: 1px solid #ccc;
}
button::before {
content: "+";
padding: 10px;
}
.active {
background-color: #2c2b2b;
color: #fff;
}
.active::before {
content: "-";
padding: 10px;
}
.panel {
display: none;
width: 50%;
padding-left: 10px;
}
Reference
이 문제에 관하여(Html,Css,Js를 사용한 아코디언), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/umapreethidev/accordion-using-html-css-js-5623텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)