-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
458 lines (388 loc) · 16.1 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
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
const carouselInner = document.querySelector('.carousel-inner');
let currentIndex = 0;
let isDragging = false;
let isClick = false;
let startX = 0;
let startY = 0;
let currentX = 0;
let projects = [];
let filteredProjects = [];
let tags = [];
let selectedTags = []; // Массив выбранных тегов
let velocity = 0;
let animationFrameId = null;
// Настраиваемые параметры чувствительности
const swipeThreshold = 30;
const velocityThreshold = 5;
const friction = 0.50;
const minVelocity = 0.3;
const wheelThrottleTimeout = 100;
// Флаг для throttling колесика мыши
let isThrottled = false;
// Загрузка данных о проектах
fetch('projects.json')
.then(response => response.json())
.then(data => {
projects = data;
filteredProjects = [...projects];
// Генерируем список уникальных тегов из проектов
tags = getUniqueTagsFromProjects(projects);
// Отображаем теги на странице
displayTags();
// Отображаем проекты
displayProjects();
// Устанавливаем текущий индекс на средний проект
currentIndex = Math.floor(filteredProjects.length / 2);
updateCarousel();
// Добавляем обработчики событий
addEventListeners();
})
.catch(error => console.error('Ошибка при загрузке проектов:', error));
// Функция получения уникальных тегов из проектов
function getUniqueTagsFromProjects(projects) {
const tagSet = new Set();
projects.forEach(project => {
if (Array.isArray(project.tags)) {
project.tags.forEach(tag => tagSet.add(tag.trim()));
}
});
return Array.from(tagSet);
}
// Функция отображения тегов
function displayTags() {
const tagsContainer = document.querySelector('.tags-container');
tagsContainer.innerHTML = ''; // Очищаем контейнер
tags.forEach(tag => {
const button = document.createElement('button');
button.className = 'tag-button';
button.textContent = tag;
// Если тег выбран, добавляем класс 'active'
if (selectedTags.includes(tag)) {
button.classList.add('active');
}
button.addEventListener('click', () => {
toggleTagSelection(tag);
});
tagsContainer.appendChild(button);
});
// Добавляем кнопку "Сбросить"
const resetButton = document.createElement('button');
resetButton.className = 'tag-button reset-button';
resetButton.textContent = 'Сбросить';
resetButton.addEventListener('click', () => {
selectedTags = [];
filterProjects();
});
tagsContainer.appendChild(resetButton);
}
// Функция переключения выбора тега
function toggleTagSelection(tag) {
if (selectedTags.includes(tag)) {
selectedTags = selectedTags.filter(t => t !== tag);
} else {
selectedTags.push(tag);
}
filterProjects();
}
// Функция фильтрации проектов по выбранным тегам
function filterProjects() {
if (selectedTags.length === 0) {
filteredProjects = [...projects];
} else {
filteredProjects = projects.filter(project => {
if (!Array.isArray(project.tags)) return false;
return selectedTags.every(tag => project.tags.includes(tag));
});
}
displayProjects();
currentIndex = Math.floor(filteredProjects.length / 2);
updateCarousel();
updateActiveTagButtons();
}
// Функция обновления активного состояния кнопок тегов
function updateActiveTagButtons() {
const tagButtons = document.querySelectorAll('.tag-button');
tagButtons.forEach(button => {
const tag = button.textContent;
if (selectedTags.includes(tag)) {
button.classList.add('active');
} else {
button.classList.remove('active');
}
// Обрабатываем кнопку "Сбросить"
if (button.classList.contains('reset-button') && selectedTags.length === 0) {
button.classList.add('disabled');
} else {
button.classList.remove('disabled');
}
});
}
// Функция отображения проектов
function displayProjects() {
carouselInner.innerHTML = ''; // Очищаем карусель
if (filteredProjects.length === 0) {
// Если проектов нет, отображаем сообщение
const message = document.createElement('div');
message.className = 'no-projects-message';
message.textContent = '¯\\_(ツ)_/¯';
carouselInner.appendChild(message);
return;
}
filteredProjects.forEach((project, index) => {
const card = document.createElement('div');
card.className = 'project-card';
// Устанавливаем фоновое изображение карточки
card.style.backgroundImage = `url(${project.image})`;
const info = document.createElement('div');
info.className = 'project-info';
const name = document.createElement('div');
name.className = 'project-name';
name.textContent = project.name;
name.addEventListener('click', (e) => {
e.stopPropagation(); // Предотвращаем срабатывание события клика на карточке
window.open(project.link, '_blank');
});
info.appendChild(name);
const description = document.createElement('div');
description.className = 'project-description';
description.textContent = project.description;
info.appendChild(description);
card.appendChild(info);
carouselInner.appendChild(card);
// Добавляем обработчик клика на карточку
card.addEventListener('click', () => {
if (currentIndex !== index) {
currentIndex = index;
updateCarousel();
}
});
});
}
// Функция для добавления обработчиков событий
function addEventListeners() {
const carousel = document.querySelector('.carousel');
// Обработчики событий для прокрутки колесиком мыши
carousel.addEventListener('wheel', handleWheel);
// Обработчики для касаний
carousel.addEventListener('touchstart', touchStart);
carousel.addEventListener('touchend', touchEnd);
carousel.addEventListener('touchmove', touchMove);
// Обработчики для мыши (dragging)
carousel.addEventListener('mousedown', mouseDown);
carousel.addEventListener('mouseup', mouseUp);
carousel.addEventListener('mouseleave', mouseLeave);
carousel.addEventListener('mousemove', mouseMove);
}
// Функция для обновления карусели
function updateCarousel() {
if (filteredProjects.length === 0) {
carouselInner.style.transform = `translateX(0px)`;
return;
}
const card = document.querySelector('.project-card');
if (!card) return; // Если нет карточек, выходим
const cardWidth = card.offsetWidth + 20; // ширина карточки + отступы
const offset = -currentIndex * cardWidth + (window.innerWidth / 2 - cardWidth / 2);
carouselInner.style.transform = `translateX(${offset}px)`;
// Обновляем прозрачность и масштаб карточек в зависимости от их расстояния от текущего индекса
const cards = document.querySelectorAll('.project-card');
cards.forEach((card, index) => {
const distance = Math.abs(index - currentIndex);
const maxDistance = 2; // Максимальное количество карточек по обе стороны от текущей, которые будут видимы
if (distance > maxDistance) {
card.style.opacity = 0;
card.style.transform = 'scale(0.6)';
card.style.pointerEvents = 'none'; // Отключаем взаимодействие с невидимыми карточками
} else if (distance === 0) {
card.style.opacity = 1;
card.style.transform = 'scale(1)';
card.style.pointerEvents = 'auto';
} else if (distance === 1) {
card.style.opacity = 0.7;
card.style.transform = 'scale(0.85)';
card.style.pointerEvents = 'auto';
} else {
card.style.opacity = 0.4;
card.style.transform = 'scale(0.7)';
card.style.pointerEvents = 'auto';
}
});
}
// Функция для обработки прокрутки колесиком мыши
function handleWheel(e) {
const delta = e.deltaY;
// Игнорируем малые прокрутки
if (Math.abs(delta) < 10) return;
if (isThrottled) return;
if (delta > 0) {
if (currentIndex < filteredProjects.length - 1) {
currentIndex = Math.min(currentIndex + 1, filteredProjects.length - 1);
e.preventDefault(); // Предотвращаем стандартное поведение только если реально прокручиваем карусель
updateCarousel();
isThrottled = true;
setTimeout(() => {
isThrottled = false;
}, wheelThrottleTimeout);
}
} else {
if (currentIndex > 0) {
currentIndex = Math.max(currentIndex - 1, 0);
e.preventDefault(); // Предотвращаем стандартное поведение только если реально прокручиваем карусель
updateCarousel();
isThrottled = true;
setTimeout(() => {
isThrottled = false;
}, wheelThrottleTimeout);
}
}
}
// Функции для обработки касаний
function touchStart(e) {
if (e.touches.length > 1) return; // Игнорируем многофакторные касания
isDragging = true;
isClick = true;
startX = getPositionX(e);
startY = e.touches[0].clientY;
currentX = startX;
velocity = 0;
// Останавливаем текущую анимацию, если она есть
if (animationFrameId) {
cancelAnimationFrame(animationFrameId);
animationFrameId = null;
}
}
function touchMove(e) {
if (!isDragging) return;
if (e.touches.length > 1) return; // Игнорируем многофакторные касания
const newX = getPositionX(e);
const newY = e.touches[0].clientY;
const deltaX = newX - startX;
const deltaY = newY - startY;
// Определяем, является ли движение горизонтальным
if (Math.abs(deltaX) > Math.abs(deltaY)) {
e.preventDefault(); // Предотвращаем стандартное поведение только при горизонтальном свайпе
isClick = false;
velocity = deltaX;
currentX = newX;
}
}
function touchEnd(e) {
if (!isDragging) return;
isDragging = false;
const diff = currentX - startX;
if (isClick) {
// Это был тап, ничего не делаем здесь
return;
}
if (Math.abs(diff) > swipeThreshold || Math.abs(velocity) > velocityThreshold) {
if (diff > 0 || velocity > velocityThreshold) {
// Свайп вправо (карусель движется вправо)
currentIndex = Math.max(currentIndex - 1, 0);
} else {
// Свайп влево (карусель движется влево)
currentIndex = Math.min(currentIndex + 1, filteredProjects.length - 1);
}
updateCarousel();
}
// Опционально: если инерция вызывает проблемы, можно ее отключить
// if (Math.abs(velocity) > velocityThreshold) {
// animateInertia();
// }
}
// Функции для обработки мыши (dragging)
function mouseDown(e) {
// Игнорируем, если нажата правая кнопка мыши
if (e.button !== 0) return;
isDragging = true;
isClick = true;
startX = getPositionX(e);
startY = e.clientY;
currentX = startX;
velocity = 0;
// Останавливаем текущую анимацию, если она есть
if (animationFrameId) {
cancelAnimationFrame(animationFrameId);
animationFrameId = null;
}
}
function mouseMove(e) {
if (!isDragging) return;
const newX = getPositionX(e);
const newY = e.clientY;
const deltaX = newX - startX;
const deltaY = newY - startY;
// Определяем, является ли движение горизонтальным
if (Math.abs(deltaX) > Math.abs(deltaY)) {
e.preventDefault(); // Предотвращаем стандартное поведение только при горизонтальном движении
isClick = false;
velocity = deltaX;
currentX = newX;
}
}
function mouseUp(e) {
if (!isDragging) return;
isDragging = false;
const diff = currentX - startX;
if (isClick) {
// Это был клик, ничего не делаем здесь
return;
}
if (Math.abs(diff) > swipeThreshold || Math.abs(velocity) > velocityThreshold) {
if (diff > 0 || velocity > velocityThreshold) {
// Свайп вправо (карусель движется вправо)
currentIndex = Math.max(currentIndex - 1, 0);
} else {
// Свайп влево (карусель движется влево)
currentIndex = Math.min(currentIndex + 1, filteredProjects.length - 1);
}
updateCarousel();
}
// Опционально: отключаем инерцию
// if (Math.abs(velocity) > velocityThreshold) {
// animateInertia();
// }
}
function mouseLeave(e) {
if (!isDragging) return;
isDragging = false;
const diff = currentX - startX;
if (isClick) {
// Это был клик, ничего не делаем здесь
return;
}
if (Math.abs(diff) > swipeThreshold || Math.abs(velocity) > velocityThreshold) {
if (diff > 0 || velocity > velocityThreshold) {
// Свайп вправо (карусель движется вправо)
currentIndex = Math.max(currentIndex - 1, 0);
} else {
// Свайп влево (карусель движется влево)
currentIndex = Math.min(currentIndex + 1, filteredProjects.length - 1);
}
updateCarousel();
}
// Опционально: отключаем инерцию
// if (Math.abs(velocity) > velocityThreshold) {
// animateInertia();
// }
}
// Вспомогательная функция для получения позиции X
function getPositionX(e) {
return e.type.includes('mouse') ? e.pageX : e.touches[0].clientX;
}
// Функция для инерционной анимации (если нужно)
function animateInertia() {
velocity *= friction;
if (Math.abs(velocity) < minVelocity) {
// Скорость слишком мала, прекращаем анимацию
cancelAnimationFrame(animationFrameId);
animationFrameId = null;
return;
}
if (velocity > velocityThreshold) {
currentIndex = Math.max(currentIndex - 1, 0);
} else if (velocity < -velocityThreshold) {
currentIndex = Math.min(currentIndex + 1, filteredProjects.length - 1);
}
updateCarousel();
animationFrameId = requestAnimationFrame(animateInertia);
}