-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
57 lines (40 loc) · 1.38 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 questions = document.getElementsByClassName('question');
const answers = document.querySelectorAll('p')
const closeButtons = document.getElementsByClassName('plusSignImg')
for (let i = 0; i < questions.length; i++) {
const texToAlter = questions[i].querySelector('h2');
questions[i].addEventListener('mouseenter', function () {
highlightQuestion(texToAlter);
});
questions[i].addEventListener('mouseleave', function() {
questionBackToNormal(texToAlter);
});
questions[i].addEventListener('click', function() {
showAnswer(answers[i]);
switchPlusSign(closeButtons[i]);
});
closeButtons[i].addEventListener('click', function() {
hideAnswer(answers[i]);
switchPlusSignBack(closeButtons[i]);
});
}
function showAnswer (answer) {
answer.style.display = 'block';
}
function highlightQuestion (question) {
question.setAttribute('id', "mouseover");
}
function questionBackToNormal (question) {
question.id = null;
}
function hideAnswer(answer) {
answer.style.display = 'none';
}
function switchPlusSignBack(button) {
button.setAttribute('src', 'assets/images/icon-plus.svg')
}
function switchPlusSign(button) {
button.setAttribute('src', 'assets/images/icon-minus.svg' )
}
export {showAnswer, highlightQuestion, questionBackToNormal, hideAnswer, switchPlusSignBack,
switchPlusSign}