Nerve Mobile Legends for Android

$
  • $
  • $
  • £

This product is currently out of stock and unavailable.

SKU: N/A Category:
document.addEventListener('DOMContentLoaded', function () { // Все карточки категорий на главной const cards = document.querySelectorAll('.cc-home-hero .product-category'); if (!cards.length) return; // Кнопка "Show more games" — у неё должен быть класс cc-show-more-games const btn = document.querySelector('.cc-show-more-games'); if (!btn) return; const limit = 16; // сколько категорий показывать сначала // Скрываем все карточки после первых 16 cards.forEach(function (card, index) { if (index >= limit) { card.classList.add('cc-more-games-hidden'); } }); // Если категорий мало, кнопку прячем if (cards.length <= limit) { btn.style.display = 'none'; return; } // Клик по кнопке — показать все и спрятать кнопку btn.addEventListener('click', function (e) { e.preventDefault(); cards.forEach(function (card) { card.classList.remove('cc-more-games-hidden'); }); btn.style.display = 'none'; }); });