-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservices.js
62 lines (42 loc) · 1.68 KB
/
services.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
document.addEventListener('DOMContentLoaded', function () {
const burger = document.querySelector('.burger');
const search = document.querySelector('.search');
const menuOverlay = document.querySelector('.menu-overlay');
const poisk = document.querySelector('.poisk');
const initialPoiskDisplay = window.getComputedStyle(poisk).getPropertyValue('display');
burger.addEventListener('click', toggleMenuOverlay);
search.addEventListener('click', togglePoisk);
function toggleMenuOverlay() {
if (menuOverlay.style.display === 'block') {
menuOverlay.style.display = 'none';
} else {
menuOverlay.style.display = 'block';
}
poisk.style.display = initialPoiskDisplay;
}
function togglePoisk() {
if (poisk.style.display === 'block' || poisk.style.display === 'flex') {
poisk.style.display = 'none';
} else {
poisk.style.display = 'flex';
}
if (menuOverlay.style.display === 'block') {
menuOverlay.style.display = 'none';
}
}
});
function submitForm(event) {
event.preventDefault();
const searchInput = document.getElementById('searchInput');
const inputValue = searchInput.value.trim();
if (inputValue !== '') {
console.log('Отправка формы с содержимым:', inputValue);
searchInput.value = '';
} else {
console.log('Поле ввода пустое. Ничего не отправлено.');
}
}
document.addEventListener('DOMContentLoaded', function() {
const searchForm = document.getElementById('searchForm');
searchForm.addEventListener('submit', submitForm);
});