document.addEventListener('DOMContentLoaded', function () {
// 각 카테고리 항목을 1개만 표시하고 나머지는 숨기기
const sections = document.querySelectorAll('.cover-list');
sections.forEach((section, index) => {
if (index > 0) { // 첫 번째 섹션만 표시하고 나머지는 숨김
section.style.display = 'none';
}
});
// '더보기' 버튼에 클릭 이벤트 추가
const moreButtons = document.querySelectorAll('.more-button a');
moreButtons.forEach(button => {
button.addEventListener('click', function (event) {
event.preventDefault(); // 기본 동작을 막음
const categoryUrl = button.getAttribute('href'); // 버튼의 href 속성에서 카테고리 URL 가져옴
window.location.href = categoryUrl; // 해당 카테고리 페이지로 이동
});
});
});