-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompany.js
78 lines (60 loc) · 2.33 KB
/
company.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
document.addEventListener("DOMContentLoaded", function() {
let currentImageIndex = 0;
const images = document.querySelectorAll(".anim img");
let interval;
function switchImage() {
images[currentImageIndex].classList.remove("active");
currentImageIndex++;
if (currentImageIndex >= images.length) {
currentImageIndex = 0;
}
images[currentImageIndex].classList.add("active");
}
interval = setInterval(switchImage, 5000);
images[images.length - 1].addEventListener("transitionend", function() {
clearInterval(interval);
interval = setInterval(switchImage, 5000);
});
});
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);
});