-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
421 lines (379 loc) · 17.3 KB
/
script.js
File metadata and controls
421 lines (379 loc) · 17.3 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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
"use strict"
//------------------scroll to begin (wtf)
function startScroll() {
window.scrollTo(0, 0);
}
window.setTimeout(startScroll, 100);
//-----------------scroll to sections
let arrHeaderLinks = document.querySelectorAll('.jjj a');
window.setTimeout(() => {
arrHeaderLinks.forEach(element => element.classList.remove('header-navigation_onclick'));
arrHeaderLinks[0].classList.add('header-navigation_onclick');
}, 100);//---light 1 menu link after reload
document.querySelector('.jjj ul').onclick = function (event) {
//document.onscroll = null; //---disable menu lights
for (let i = 0; i < arrHeaderLinks.length; i++) {
if (event.target == arrHeaderLinks[i]) {
//arrHeaderLinks.forEach(element =>
// element.classList.remove('header-navigation_onclick'));
arrHeaderLinks[i].classList.add('header-navigation_onclick');
arrHeaderLinks[i].classList.add('header-navigation_onclick-additional');//additional light menu button until jump to secton
window.setTimeout(() => {
arrHeaderLinks[i].classList.remove('header-navigation_onclick-additional');//remove additional light
}, 1000);
event.preventDefault();
if (i == 0) {
document.querySelector('.point1').scrollIntoView({
block: "end",
inline: "nearest",
behavior: "smooth"
});
}
if (i == 1) {
document.querySelector('.point2').scrollIntoView({
block: "start",
inline: "nearest",
behavior: "smooth"
});
}
if (i == 2) {
document.querySelector('.point3').scrollIntoView({
block: "start",
inline: "nearest",
behavior: "smooth"
});
}
if (i == 3) {
document.querySelector('.point4').scrollIntoView({
block: "start",
inline: "nearest",
behavior: "smooth"
});
}
if (i == 4) {
document.querySelector('.point5').scrollIntoView({
block: "start",
inline: "nearest",
behavior: "smooth"
});
}
}
}
// window.setTimeout(() => { //---unable menu lights
// document.onscroll = onScroll
// }, 1000);
}
//----menu item light depends to scroll
document.onscroll = onScroll;
function onScroll() {
let rect1 = document.querySelector('.point1').getBoundingClientRect().y;
let rect2 = document.querySelector('.point2').getBoundingClientRect().y;
let rect3 = document.querySelector('.point3').getBoundingClientRect().y;
let rect4 = document.querySelector('.point4').getBoundingClientRect().y;
let rect5 = document.querySelector('.point5').getBoundingClientRect().y;
let rectArr = [rect1, rect2, rect3, rect4, rect5, 10000];
for (let i = 0; i < 5; i++) {
if ((rectArr[i] - 95) < 0 && (rectArr[i + 1] - 95) > 0) {
arrHeaderLinks.forEach(element => element.classList.remove('header-navigation_onclick'));
arrHeaderLinks[i].classList.add('header-navigation_onclick');
arrHeaderLinksMobile.forEach(element => element.classList.remove('header-navigation_onclick'));
arrHeaderLinksMobile[i].classList.add('header-navigation_onclick');
}
}
}
//----------------------------------------------------fix double navigation
//menu in html
const arrHeaderLinksMobile = document.querySelectorAll('.hhh a');
window.setTimeout(() => {
arrHeaderLinksMobile.forEach(element => element.classList.remove('header-navigation_onclick'));
arrHeaderLinksMobile[0].classList.add('header-navigation_onclick');
}, 100);
document.querySelector('.hhh ul').onclick = function (event) {
//console.log(event.target);
document.onscroll = null;
document.querySelector('.hamburger').classList.toggle('rotate');
document.querySelector('.logo a').classList.toggle('move-left');
document.querySelector('.nav-mobile').classList.toggle('nav-mobile__visible');
document.querySelector('.mega-wrapper').classList.toggle('mega-wrapper__visible');
for (let i = 0; i < arrHeaderLinksMobile.length; i++) {
if (event.target == arrHeaderLinksMobile[i]) {
arrHeaderLinksMobile.forEach(element => element.classList.remove('header-navigation_onclick'));
arrHeaderLinksMobile[i].classList.add('header-navigation_onclick');
event.preventDefault();
if (i == 0) {
document.querySelector('.point1').scrollIntoView({
block: "end",
inline: "nearest",
behavior: "smooth"
});
}
if (i == 1) {
document.querySelector('.point2').scrollIntoView({
block: "start",
inline: "nearest",
behavior: "smooth"
});
}
if (i == 2) {
document.querySelector('.point3').scrollIntoView({
block: "start",
inline: "nearest",
behavior: "smooth"
});
}
if (i == 3) {
document.querySelector('.point4').scrollIntoView({
block: "start",
inline: "nearest",
behavior: "smooth"
});
}
if (i == 4) {
document.querySelector('.point5').scrollIntoView({
block: "start",
inline: "nearest",
behavior: "smooth"
});
}
}
}
window.setTimeout(() => {
console.log('asd');
document.onscroll = onScroll
}, 1000);
//document.onscroll=null;
}
// //----menu item light depends to scroll
// document.onscroll = onScroll;
//
// function onScroll() {
// let rect1 = document.querySelector('.point1').getBoundingClientRect().y;
// let rect2 = document.querySelector('.point2').getBoundingClientRect().y;
// let rect3 = document.querySelector('.point3').getBoundingClientRect().y;
// let rect4 = document.querySelector('.point4').getBoundingClientRect().y;
// let rect5 = document.querySelector('.point5').getBoundingClientRect().y;
// let rectArr = [rect1, rect2, rect3, rect4, rect5, 10000];
// for (let i = 0; i < 5; i++) {
// if ((rectArr[i] - 72) < 0 && (rectArr[i + 1] - 72) > 0) {
// arrHeaderLinksMobile.forEach(element => element.classList.remove('header-navigation_onclick'));
// arrHeaderLinksMobile[i].classList.add('header-navigation_onclick');
// }
//
// }
//
// }
//--------------change phone pictures
document.querySelector('.mobile_vertical-unvisible').onclick = function () {
if (document.querySelector('.mobile_vertical').getAttribute('src') == 'assets/mobile-vertical.png') {
document.querySelector('.mobile_vertical').setAttribute('src', 'assets/phone-vert-off.png');
} else
document.querySelector('.mobile_vertical').setAttribute('src', 'assets/mobile-vertical.png');
}
document.querySelector('.mobile_horizontal-unvisible').onclick = function () {
if (document.querySelector('.mobile_horizontal').getAttribute('src') == 'assets/mobile-horizontal.png') {
document.querySelector('.mobile_horizontal').setAttribute('src', 'assets/phone-hor-off.png');
} else
document.querySelector('.mobile_horizontal').setAttribute('src', 'assets/mobile-horizontal.png');
}
// document.querySelector('.mobile_3item').onclick = function () {
// if (document.querySelector('.mobile_3item').getAttribute('src') == 'assets/Slide-2-on.png') {
// document.querySelector('.mobile_3item').setAttribute('src', 'assets/Slide-2-off.png');
// } else
// document.querySelector('.mobile_3item').setAttribute('src', 'assets/Slide-2-on.png');
//
// }
//------------------------carousel
//---response
let sectionWidth;
sectionWidth = getComputedStyle(document.querySelector('.section')).width.split('px')[0];
document.querySelector('.section').style.height = `${+sectionWidth * 0.588}px`;
window.onresize = function (event) {
sectionWidth = getComputedStyle(document.querySelector('.section')).width.split('px')[0];
document.querySelector('.section').style.height = `${+sectionWidth * 0.588}px`;
};
//-----end response
document.querySelector('.left-btn').onclick = animateFramesLeft;
document.querySelector('.right-btn').onclick = animateFramesRight;
let firstFrameLeft;
let secondFrameLeft;
let firstFrame = document.querySelector(".first__frame");
let secondFrame = document.querySelector(".second__frame");
function enableButton() {
document.querySelector('.left-btn').style.pointerEvents = 'auto';
document.querySelector('.right-btn').style.pointerEvents = 'auto';
}
function animateFramesLeft() {
document.querySelector('.left-btn').style.pointerEvents = 'none'; //disable button while animate
document.querySelector('.right-btn').style.pointerEvents = 'none'; //disable button while animate
window.setTimeout(enableButton, 2000); //enable button after animate
firstFrameLeft = (window.getComputedStyle(firstFrame).left.split('px'))[0];
secondFrameLeft = (window.getComputedStyle(secondFrame).left.split('px'))[0];
// console.log(sectionWidth+'----w');
// console.log(firstFrameLeft+' -----1');
// console.log(secondFrameLeft+'-----2');
if (+firstFrameLeft < -10) firstFrameLeft = 100; //--- -10 because
// chrome dont want 0 )))
if (+firstFrameLeft == 0) firstFrameLeft = 0;
if (+firstFrameLeft > 10) firstFrameLeft = 100;
if (+secondFrameLeft < -10) secondFrameLeft = 100;
if (+secondFrameLeft == 0) secondFrameLeft = 0;
if (+secondFrameLeft > 10) secondFrameLeft = 100;
document.querySelector(".first__frame").animate([
{left: `${+firstFrameLeft}%`},
{left: `${+firstFrameLeft - 100}%`}
], {
duration: 2000,
easing: "cubic-bezier(.43,-0.29,.58,1.28)",
fill: "forwards",
});
document.querySelector(".second__frame").animate([
{left: `${+secondFrameLeft}%`},
{left: `${+secondFrameLeft - 100}%`}
], {
duration: 2000,
easing: "cubic-bezier(.43,-0.29,.58,1.28)",
fill: "forwards",
});
}
function animateFramesRight() {
document.querySelector('.right-btn').style.pointerEvents = 'none'; //disable button while animate
document.querySelector('.left-btn').style.pointerEvents = 'none'; //disable button while animate
window.setTimeout(enableButton, 2000);
firstFrameLeft = (window.getComputedStyle(firstFrame).left.split('px'))[0];
secondFrameLeft = (window.getComputedStyle(secondFrame).left.split('px'))[0];
if (+firstFrameLeft < -10) firstFrameLeft = -100;
if (+firstFrameLeft == 0) firstFrameLeft = 0;
if (+firstFrameLeft > 10) firstFrameLeft = -100;
if (+secondFrameLeft < -10) secondFrameLeft = -100;
if (+secondFrameLeft == 0) secondFrameLeft = 0;
if (+secondFrameLeft > 10) secondFrameLeft = -100;
document.querySelector(".first__frame").animate([
{left: `${+firstFrameLeft}%`},
{left: `${+firstFrameLeft + 100}%`}
], {
duration: 2000,
easing: "cubic-bezier(.43,-0.29,.58,1.28)",
fill: "forwards",
});
document.querySelector(".second__frame").animate([
{left: `${+secondFrameLeft}%`},
{left: `${+secondFrameLeft + 100}%`}
], {
duration: 2000,
easing: "cubic-bezier(.43,-0.29,.58,1.28)",
fill: "forwards",
});
}
//------------------------end carousel
//----------------change gallery
const arrGalleryPicturesLinks = document.querySelectorAll('.gallery img');
//const arrGalleryPicturesSrc = [];
//arrGalleryPicturesLinks.forEach(element =>
// arrGalleryPicturesSrc.push(element.getAttribute('src')));
//console.log(arrGalleryPicturesSrc);
// function makeRandomArr(a, b) {
// return Math.random() - 0.5;
// }
//
// const randomArr1 = arrGalleryPicturesSrc.sort(makeRandomArr).slice(0); //slice(0) create a new copy of array with a new link
// const randomArr2 = arrGalleryPicturesSrc.sort(makeRandomArr).slice(0);
// const randomArr3 = arrGalleryPicturesSrc.sort(makeRandomArr).slice(0);
// const randomArr4 = arrGalleryPicturesSrc.sort(makeRandomArr).slice(0);
const arrGalleryLinks = document.querySelectorAll('.gallery-buttons button');
const randomArr1 = ["assets/s2-smile.jpg", "assets/s2-black.jpg",
"assets/s2-robot.jpg", "assets/s2-animals.jpg", "assets/s2-sdk.jpg", "assets/s2-robots.jpg",
"assets/s2-birds.jpg", "assets/s2-beast.jpg", "assets/s2-words.jpg", "assets/s2-beast2.jpg",
"assets/s2-abstract.jpg", "assets/s2-ship.jpg"];
const randomArr2 = ["assets/s2-black.jpg",
"assets/s2-robot.jpg", "assets/s2-animals.jpg", "assets/s2-sdk.jpg", "assets/s2-robots.jpg",
"assets/s2-birds.jpg", "assets/s2-beast.jpg", "assets/s2-words.jpg", "assets/s2-beast2.jpg",
"assets/s2-abstract.jpg", "assets/s2-ship.jpg", "assets/s2-smile.jpg"];
const randomArr3 = ["assets/s2-robot.jpg", "assets/s2-animals.jpg", "assets/s2-sdk.jpg", "assets/s2-robots.jpg",
"assets/s2-birds.jpg", "assets/s2-beast.jpg", "assets/s2-words.jpg", "assets/s2-beast2.jpg",
"assets/s2-abstract.jpg", "assets/s2-ship.jpg", "assets/s2-smile.jpg", "assets/s2-black.jpg"];
const randomArr4 = ["assets/s2-animals.jpg", "assets/s2-sdk.jpg", "assets/s2-robots.jpg",
"assets/s2-birds.jpg", "assets/s2-beast.jpg", "assets/s2-words.jpg", "assets/s2-beast2.jpg",
"assets/s2-abstract.jpg", "assets/s2-ship.jpg", "assets/s2-smile.jpg", "assets/s2-black.jpg",
"assets/s2-robot.jpg"];
document.querySelector('.gallery-buttons').onclick = function (event) {
event.preventDefault();
for (let i = 0; i < arrGalleryLinks.length; i++) {
if (event.target == arrGalleryLinks[i]) {
arrGalleryPicturesLinks.forEach(element => element.classList.remove('gallery-img_onclick'));
arrGalleryLinks.forEach(element => element.classList.remove('gallery-button_onclick'));
arrGalleryLinks[i].classList.add('gallery-button_onclick');
if (i == 0) {
for (let j = 0; j < 12; j++) {
arrGalleryPicturesLinks[j].setAttribute('src', randomArr1[j]);
}
}
if (i == 1) {
for (let j = 0; j < 12; j++) {
arrGalleryPicturesLinks[j].setAttribute('src', randomArr2[j]);
}
}
if (i == 2) {
for (let j = 0; j < 12; j++) {
arrGalleryPicturesLinks[j].setAttribute('src', randomArr3[j]);
}
}
if (i == 3) {
for (let j = 0; j < 12; j++) {
arrGalleryPicturesLinks[j].setAttribute('src', randomArr4[j]);
}
}
}
}
}
document.querySelector('.gallery').onclick = function (event) {
for (let i = 0; i < arrGalleryPicturesLinks.length; i++) {
if (event.target == arrGalleryPicturesLinks[i]) {
//console.log(event.target);
arrGalleryPicturesLinks.forEach(element => element.classList.remove('gallery-img_onclick'));
arrGalleryPicturesLinks[i].classList.add('gallery-img_onclick');
}
}
}
//---------------------form submit
document.querySelector('form').onsubmit = function (event) {
event.preventDefault();
const formA = document.forms[0];
const subjectMessage = formA.elements.subject.value ? formA.elements.subject.value : '';
const subjectMessageStrong = formA.elements.subject.value ? 'Subject: ' : 'Without' +
' subject';
const descriptionMessage = formA.elements.detail.value ? formA.elements.detail.value : '';
const descriptionMessageStrong = formA.elements.detail.value ? 'Description: ' : 'Without' +
' description';
if (!document.querySelector('.form-modal-wrapper')) {
formA.insertAdjacentHTML("afterbegin", `<div class="form-modal-wrapper">
<div class="form-modal">
<p style="color: #d6564f"><strong>The letter was sent</strong></p>
<p><strong>${subjectMessageStrong}</strong> ${subjectMessage}</p>
<p><strong>${descriptionMessageStrong}</strong> ${descriptionMessage}</p>
</div>
<button class="modal-button">ok</button>
</div>`);
document.querySelector(".form-modal-wrapper").animate([
{opacity: `0`},
{opacity: `1`}
], {
duration: 1000,
easing: "linear",
fill: "forwards",
});
}
document.querySelector(".modal-button").onclick = function (event) {
document.querySelector(".form-modal-wrapper").remove();
document.querySelector('form').reset()
}
}
//--------------------hamburger
document.querySelector('.hamburger').onclick = function (event) {
//console.log(event.target);
//this.rotate(90);
this.classList.toggle('rotate');
document.querySelector('.logo a').classList.toggle('move-left');
//document.querySelector('.logo').classList.toggle('move-left-logo');
document.querySelector('.nav-mobile').classList.toggle('nav-mobile__visible');
document.querySelector('.mega-wrapper').classList.toggle('mega-wrapper__visible');
}