-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
154 lines (131 loc) · 3.27 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
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
new Swiper('.gallery__slider', {
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev'
},
/* scrollbar: {
el: '.swiper-scrollbar',
draggable: true
}, */
keyboard: {
enable: true,
},
/* autoHeight: true, */
slidesPerView: '1',
spaceBetween: 20,
/* centeredSlides: true, */
loop: true,
thumbs: {
swiper: {
el: '.gallery__mini-slider',
slidesPerView: 8,
}
},
});
new Swiper('.offer__slider', {
navigation: {
nextEl: '.offer__button-right',
prevEl: '.offer__button-left'
},
keyboard: {
enable: true,
},
slidesPerView: '1.5',
loop: true,
watchOverflow: true,
spaceBetween: 60,
observer: true,
})
//form to telegram
const form = document.querySelector('.popup-header__form');
form.addEventListener('submit', () => {
const data = Object.fromEntries(new FormData(form))
const init = {method: 'POST', headers: {'content-type': 'application/json'}, body: JSON.stringify(data)}
fetch('api/data', init)
popupClose(form.closest('.popup'))
form.reset()
})
//popup-header
const popupLinks = document.querySelectorAll('.popup-link')
const body = document.querySelector('.body')
const lockPadding = document.querySelectorAll('.lock-padding')
let unlock = true;
const timeout = 800;
if (popupLinks.length > 0) {
for (let i = 0; i < popupLinks.length; i++) {
const popupLink = popupLinks[i]
popupLink.addEventListener('click', function(e) {
const popupName = popupLink.getAttribute('href').replace('#', '')
const curentPopup = document.getElementById(popupName)
popupOpen(curentPopup)
e.preventDefault()
})
}
}
const popupCloseIcon = document.querySelectorAll('.close-popup')
if (popupCloseIcon.length > 0) {
for (let i = 0; i < popupCloseIcon.length; i++) {
const el = popupCloseIcon[i]
el.addEventListener('click', function(e) {
popupClose(el.closest('.popup'))
e.preventDefault()
})
}
}
function popupOpen(curentPopup) {
if (curentPopup && unlock) {
const popupActive = document.querySelector('.popup.open')
if (popupActive) {
popupClose(popupActive, false)
} /* else {
bodyLock()
} */
curentPopup.classList.add('open')
curentPopup.addEventListener('click', function(e) {
if (!e.target.closest('.popup__content')) {
popupClose(e.target.closest('.popup'))
}
})
}
}
function popupClose(popupActive, doUnlock = true) {
if (unlock) {
popupActive.classList.remove('open');
/* if (doUnlock) {
bodyUnLock()
} */
}
}
document.addEventListener('keydown', function(e) {
if (e.which === 27) {
const popupActive = document.querySelector('.popup.open');
popupClose(popupActive)
}
})
/* function bodyLock() {
const lockPaddingValue = window.innerWidth - document.querySelector('.wrapper').offsetWidth + 'px'
for (let i = 0; i < lockPadding.length; i++) {
const el = lockPadding[i]
el.style.paddingRight = lockPaddingValue
}
body.style.paddingRight = lockPaddingValue
body.classList.add('lock')
unlock = false;
setTimeout(function() {
unlock = true;
}, timeout);
}
function bodyUnLock() {
setTimeout(function () {
for (let i = 0; i < lockPadding.length; i++) {
const el = lockPadding[i];
el.style.paddingRight = '0'
}
body.style.paddingRight = '0'
body.classList.remove('lock')
}, timeout)
unlock = false;
setTimeout(function() {
unlock = true;
}, timeout);
} */