-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
252 lines (205 loc) · 6.69 KB
/
script.js
File metadata and controls
252 lines (205 loc) · 6.69 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
// Menu header responsive
var menu = document.querySelector(".menu");
var menuButton = document.querySelector(".FCFLEM");
var x = 2
menuButton.addEventListener("click", () => {
if (x>0){
menu.classList.add("active");
x = -1
}
else{
menu.classList.remove("active")
x=2
}
});
// Scroll bar
const body = document.querySelector('body');
const scrollBar = document.querySelector('.scroll');
window.addEventListener('scroll', () =>{
let scroll = window.scrollY / (body.clientHeight - window.innerHeight);
let scrollPercent = Math.round(scroll * 100);
scrollBar.style.width = scrollPercent + '%';
})
// Widget météo
!function(d,s,id){
var js,fjs=d.getElementsByTagName(s)[0];
if(!d.getElementById(id)){
js=d.createElement(s);
js.id=id;
js.src='https://weatherwidget.io/js/widget.min.js';
fjs.parentNode.insertBefore(js,fjs);
}
}
(document,'script','weatherwidget-io-js');
//Carrousel
var allCarrousel = [];
var allShown = [];
function calculShown(){
allShown = []
allCarrousel.forEach(function(item, index, array) {
var actuelShown = item[0].children[item[4]];
allShown.push(actuelShown)
})
return allShown;
};
function defIntervale(change){
let timer = setInterval(() => {
change[0].children[change[3]].classList.remove('before');
change[0].children[change[4]].classList.remove('shown');
change[0].children[change[5]].classList.remove('after');
change[4] += 1
if (change[4] < 0) {
change[4] += change[1]
} else if (change[4] >= change[1]){
change[4] -= change[1]
}
change[3] = change[4]-1
change[5] = change[4]+1
if (change[3] < 0){
change[3] += change[1]
}
if (change[5] >= change[1]) {
change[5] -= change[1]
}
// Une fois la transition finie
setTimeout(() => {
change[0].children[change[3]].classList.add('before');
change[0].children[change[4]].classList.add('shown');
change[0].children[change[5]].classList.add('after');
var allShown = calculShown();
//Waiting(allShown);
}, 200);
}, change[6] * 1000);
return timer;
}
function Waiting(allShown) {
for(let shown of allShown){
shown.addEventListener('mouseover', () => {
console.log('On')
let parentOf = shown.parentNode;
let section = parentOf.dataset.carrousel
allCarrousel.forEach(function(item, index, array) {
if (item[2] == section){
let change = item;
clearInterval(change[7]);
console.log('on arrete tout', change[7]);
}
})
})
shown.addEventListener('mouseleave', () => {
console.log('Off')
let parentOf = shown.parentNode;
let section = parentOf.dataset.carrousel
allCarrousel.forEach(function(item, index, array) {
if (item[2] == section){
let change = item;
change[7] = defIntervale(change)
console.log('on relance tout !', change[7]);
}
})
})
}
}
for (let carrousel of document.querySelectorAll('[data-carrousel]'))
{
let section = carrousel.dataset.carrousel;
let nombre = carrousel.children.length;
let index = 0
let before = index - 1
let after = index + 1
let tps = carrousel.dataset.time
if (before < 0){
before += nombre
}
if (after >= nombre) {
after -= nombre
}
let newCarrousel = [carrousel, nombre, section, before, index, after, tps]
let timer = defIntervale(newCarrousel)
newCarrousel.push(timer)
allCarrousel.push(newCarrousel)
carrousel.children[before].classList.add('before');
carrousel.children[index].classList.add('shown');
carrousel.children[after].classList.add('after');
var allShown = calculShown();
//Waiting(allShown);
}
var groupesBoutons = document.querySelectorAll('[data-boutons]');
for (let bouton of groupesBoutons) {
bouton.addEventListener('click', () => {
allCarrousel.forEach(function(item, index, array) {
if (item[2] == bouton.dataset.sections) {
let change = item;
change[0].children[change[3]].classList.remove('before');
change[0].children[change[4]].classList.remove('shown');
change[0].children[change[5]].classList.remove('after');
let nom = bouton.dataset.boutons;
if (nom == "gauche") {
change[4] -= 1;
} else {
change[4] += 1;
}
if (change[4] < 0) {
change[4] += change[1];
} else if (change[4] >= change[1]){
change[4] -= change[1];
}
change[3] = change[4]-1;
change[5] = change[4]+1;
if (change[3] < 0){
change[3] += change[1];
}
if (change[5] >= change[1]) {
change[5] -= change[1];
}
change[0].children[change[3]].classList.add('before');
change[0].children[change[4]].classList.add('shown');
change[0].children[change[5]].classList.add('after');
var allShown = calculShown();
//Waiting(allShown);
}
})
})
}
// Récupération de la valeur du paramètre "error" dans l'URL
const params = new URLSearchParams(window.location.search);
const error = params.get("error");
// Si le paramètre "error" est présent et a la valeur "1", afficher une alerte "identifiants invalides"
if (error === "1") {
alert("Identifiants invalides");
}
/*
- - - - - HTML - - - - -
<div class="diaporama" data-diaporama="4">
<>
</div>
- - - - - CSS - - - - -
.diaporama {
width: 100%;
height: 300px;
border: solid var(--secondary-color);
border-radius: 10px;
}
.diaporama {
width : 30%;
}
.diaporama > img {
width: 100%;
}
[data-diaporama] {
position: relative;
width: 100%;
}
[data-diaporama] > img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.2s linear;
object-fit: contain;
}
[data-diaporama] > img.shown {
opacity: 1;
}
*/