답변 2개
채택된 답변
+20 포인트
1년 전
view.skin.php 하단에 아래 스크립트를 넣어주세요. 그누순정 기준입니다.
Copy
images = document.querySelectorAll("#bo_v_img img");
if (typeof images[1] == "object") for (i of images) i.style.width = "50%";
else images[0].style.width = "100%";
로그인 후 평가할 수 있습니다
답변에 대한 댓글 1개
1년 전
댓글을 작성하려면 로그인이 필요합니다.
RYANRYAN
1년 전
Copy
const galleryImages = document.querySelectorAll('.gallery-image'); //본인 코드에 맞춰 변경
galleryImages.forEach((image) => {
// 첨부 파일 개수
const fileCount = image.querySelectorAll('.file-item').length; //본인 코드에 맞춰 변경
if (fileCount === 1) {
image.style.width = '100%';
} else if (fileCount > 1) {
image.style.width = '50%';
}
});
로그인 후 평가할 수 있습니다
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
큰 도움이 되었어요.