-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
54 lines (46 loc) · 1.37 KB
/
script.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
// Random Name Button Logic \\
const studentList = [
'Paul',
'Floriane',
'Matthieu',
'Theo',
'Eric',
'Josselin',
'Philippe',
'Johann',
'Florian',
'Michael',
'Safae',
'Nicolas',
'Ludovic',
'Mouss',
'Rony',
'Etienne Etourdi',
'Etienne Entrainant',
'Soeli'
]
const randomButton = document.querySelector(".btn-random-name")
const studentNumber = studentList.length
const pickRandomStudent = () => {
const randomStudentNumber = Math.floor(Math.random() * studentNumber)
randomButton.innerHTML = `${studentList[randomStudentNumber]}`
setTimeout(() => {
randomButton.innerHTML = 'Random Apprenant'
}, 3000)
}
randomButton.addEventListener('click', () => {
pickRandomStudent()
})
// DROPDOWN BLOCK LOGIC \\
const dropdownButtons = document.querySelectorAll(".dropdown")
const toggleClassActive = (clickedButton) => {
const parentNodex2 = clickedButton.parentNode.parentNode // selecting the first common parent between the dropdown button and the list
const childListItems = parentNodex2.querySelector(".list-items")
childListItems.classList.toggle('active')
}
dropdownButtons.forEach((button) => {
button.addEventListener('click', () => {
toggleClassActive(button)
button.classList.toggle('rotate') // adding rotate(180deg) to the style worked only for 1 click
})
})