From a2ea80c4e5c38babed55721c184901910faf4e8a Mon Sep 17 00:00:00 2001 From: andreiextr Date: Sat, 11 May 2024 22:59:02 +0300 Subject: [PATCH] edit page_gamer --- global.js | 7 +++ index.html | 2 +- page_gamer.html | 6 +-- page_gamer.js | 68 +++++++++++++++++++++++++++++ script.js | 112 ++++++++++++++++-------------------------------- 5 files changed, 117 insertions(+), 78 deletions(-) create mode 100644 page_gamer.js diff --git a/global.js b/global.js index 9316873..f4a1dc5 100644 --- a/global.js +++ b/global.js @@ -2,8 +2,12 @@ window.onload = function() { const firstItem = document.querySelector('.nav-item'); firstItem.classList.add('active'); + + // Активируем раздел "Игроки" по умолчанию + togglePage('page1'); }; + // ПЕРЕКЛЮЧЕНИЯ ПО ВКЛАДКАМ В SIDEBAR function togglePage(pageId) { var pages = document.querySelectorAll('.page'); @@ -20,10 +24,13 @@ function togglePage(pageId) { const items = document.querySelectorAll('.nav-item'); items.forEach(item => { item.addEventListener('click', () => { + // Удаляем класс 'active' у всех других элементов items.forEach(otherItem => { otherItem.classList.remove('active'); }); + // Добавляем класс 'active' к текущему элементу item.classList.add('active'); }); }); + diff --git a/index.html b/index.html index 01ea491..c1990a9 100644 --- a/index.html +++ b/index.html @@ -75,7 +75,7 @@ -
+