Aleksmorshen commited on
Commit
58b4907
·
verified ·
1 Parent(s): 24f5700

Update script.js

Browse files
Files changed (1) hide show
  1. script.js +23 -0
script.js CHANGED
@@ -325,4 +325,27 @@ document.addEventListener('DOMContentLoaded', function () {
325
  loadProducts();
326
  }
327
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
  });
 
325
  loadProducts();
326
  }
327
  }
328
+
329
+ // Функция для переключения бургер-меню
330
+ window.toggleMenu = function () {
331
+ const menuItems = document.querySelector('.menu-items');
332
+ menuItems.style.display = menuItems.style.display === 'block' ? 'none' : 'block';
333
+ };
334
+
335
+ // Функция для отображения выбранного раздела
336
+ window.showSection = function (sectionId) {
337
+ // Скрываем все колонки
338
+ document.querySelectorAll('.column').forEach(column => {
339
+ column.classList.remove('active');
340
+ });
341
+
342
+ // Показываем выбранную колонку
343
+ document.getElementById(sectionId).classList.add('active');
344
+
345
+ // Скрываем меню после выбора
346
+ document.querySelector('.menu-items').style.display = 'none';
347
+ };
348
+
349
+ // Показываем Инвентарь по умолчанию
350
+ showSection('inventory');
351
  });