-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
57 lines (47 loc) · 1.78 KB
/
index.js
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const EventBindItems = () =>{
document.querySelectorAll('.toggle-btn').forEach(i => {
i.addEventListener('click', e => {
const isExpanded = e.target.dataset['expand'] === '1';
const content = e.target.nextElementSibling;
const iconElem = e.target.children[1];
document.querySelectorAll('.item-main').forEach(a => {
const toggleBtn = a.querySelector('.toggle-btn');
toggleBtn.classList.remove('expanded');
const hideItems = a.querySelector('.item-content-wrapper');
hideItems.style.display = 'none';
const icon = a.querySelector('.toggle-icon');
icon.innerHTML = '+';
});
//collapse
if (isExpanded) {
iconElem.innerHTML = '+';
content.style.display = 'none';
} else {
//expand
iconElem.innerHTML = '−';
content.style.display = 'block';
e.target.classList.add('expanded');
}
e.target.dataset['expand'] = isExpanded ? '0' : '1';
});
});
}
const GenerateItems = () => {
let htmls = '';
for(let i = 1; i <= 10; i++){
htmls += `<div class="item-main">
<div class="toggle-btn" data-expand="0">
<span class="toggle-btn-name">Toggle Menu ${i}</span>
<span class="toggle-icon">+</span>
</div>
<div class="item-content-wrapper">
<div class="items">Item 1</div>
<div class="items">Item 2</div>
<div class="items">Item 3</div>
</div>
</div>`;
}
document.getElementById('wrapper').innerHTML = htmls;
EventBindItems();
}
GenerateItems();