편집 요약 없음 |
편집 요약 없음 |
||
4번째 줄: | 4번째 줄: | ||
const title = document.querySelector('.liberty-content-header .title'); | const title = document.querySelector('.liberty-content-header .title'); | ||
const contentTools = document.querySelector('.liberty-content-header .content-tools'); | const contentTools = document.querySelector('.liberty-content-header .content-tools'); | ||
const contentSub = document.querySelector('.liberty-content-header .contentSub'); | |||
if (window.innerWidth <= 1022.4) { | if (window.innerWidth <= 1022.4) { | ||
// 화면 크기가 1022.4px 이하일 경우, content- | // 화면 크기가 1022.4px 이하일 경우, title, content-tools, contentSub 순으로 배치 | ||
if (title && contentTools && | if (title && contentTools && contentSub) { | ||
const parent = title.parentNode; | |||
// 순서가 이미 바뀌어 있는지 확인하여 중복 실행 방지 | |||
if (parent.firstChild !== title) { | |||
parent.appendChild(title); // title을 첫 번째로 배치 | |||
parent.appendChild(contentTools); // content-tools를 두 번째로 배치 | |||
parent.appendChild(contentSub); // contentSub를 세 번째로 배치 | |||
} | |||
} | } | ||
} else { | } else { | ||
// 화면 크기가 1022.4px 이상일 경우, 원래의 순서로 복원 | // 화면 크기가 1022.4px 이상일 경우, 원래의 순서로 복원 | ||
const libertyContentHeader = document.querySelector('.liberty-content-header'); | const libertyContentHeader = document.querySelector('.liberty-content-header'); | ||
if (libertyContentHeader && title && contentTools) { | if (libertyContentHeader && title && contentTools && contentSub) { | ||
// content- | libertyContentHeader.prepend(title); // title을 처음으로 복원 | ||
libertyContentHeader. | libertyContentHeader.append(contentTools); // content-tools을 그 다음에 배치 | ||
libertyContentHeader.append(contentSub); // contentSub를 그 다음에 배치 | |||
} | } | ||
} | } |
2024년 12월 9일 (월) 17:54 판
/* 이 자바스크립트 설정은 리버티 스킨을 사용하는 사용자에게 적용됩니다 */
// 화면 크기가 변경될 때마다 실행되는 함수
function adjustLayout() {
const title = document.querySelector('.liberty-content-header .title');
const contentTools = document.querySelector('.liberty-content-header .content-tools');
const contentSub = document.querySelector('.liberty-content-header .contentSub');
if (window.innerWidth <= 1022.4) {
// 화면 크기가 1022.4px 이하일 경우, title, content-tools, contentSub 순으로 배치
if (title && contentTools && contentSub) {
const parent = title.parentNode;
// 순서가 이미 바뀌어 있는지 확인하여 중복 실행 방지
if (parent.firstChild !== title) {
parent.appendChild(title); // title을 첫 번째로 배치
parent.appendChild(contentTools); // content-tools를 두 번째로 배치
parent.appendChild(contentSub); // contentSub를 세 번째로 배치
}
}
} else {
// 화면 크기가 1022.4px 이상일 경우, 원래의 순서로 복원
const libertyContentHeader = document.querySelector('.liberty-content-header');
if (libertyContentHeader && title && contentTools && contentSub) {
libertyContentHeader.prepend(title); // title을 처음으로 복원
libertyContentHeader.append(contentTools); // content-tools을 그 다음에 배치
libertyContentHeader.append(contentSub); // contentSub를 그 다음에 배치
}
}
}
// 페이지 로드 시와 창 크기 변경 시 실행
window.addEventListener('load', adjustLayout);
window.addEventListener('resize', adjustLayout);