-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
121 lines (98 loc) · 2.19 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
console.log('The answer is still no.');
const slides = {
askRoy: {
text: 'Which Roy?',
options: [
{
image: 'roy_koopa.jpg',
slide: 'endSure'
},
{
image: 'roy_fe.png',
slide: 'askGame'
}
]
},
askGame: {
text: 'Which game?',
options: [
{
image: 'melee.png',
slide: 'redirectNo'
},
{
image: 'ssb4.png',
slide: 'askSkill'
}
]
},
askSkill: {
text: 'Are you good with him?',
options: [
{
text: 'No',
slide: 'endNo'
},
{
text: 'Yes',
slide: 'endNo'
}
]
},
endSure: {
text: 'Sure'
},
endNo: {
text: 'No'
},
redirectNo: {
link: 'https://www.youtube.com/watch?v=31g0YE61PLQ'
}
};
let container;
const runSlide = id => {
container.innerHTML = '';
container.style.opacity = 1;
const slide = slides[id];
if (slide.link) {
window.location.href = slide.link;
return;
}
const slideText = document.createElement('h2');
slideText.textContent = slide.text;
container.appendChild(slideText);
if (slide.options) {
const slideOptions = document.createElement('div');
slideOptions.classList.add('slide-options');
slide.options.forEach(option => {
const slideOption = createSlideOption(option);
slideOptions.appendChild(slideOption);
});
container.appendChild(slideOptions);
} else {
slideText.classList.add('answer');
const restart = document.createElement('a');
restart.href = '';
restart.textContent = 'Restart';
container.appendChild(restart);
}
};
const createSlideOption = option => {
let slideOption;
if (option.image) {
slideOption = document.createElement('img');
slideOption.setAttribute('src', 'img/' + option.image);
} else {
slideOption = document.createElement('div');
slideOption.textContent = option.text;
}
slideOption.addEventListener('click', () => {
container.style.opacity = 0;
setTimeout(() => runSlide(option.slide), 250);
});
return slideOption;
};
window.onload = () => {
container = document.getElementById('slide-container');
runSlide('askRoy');
};