이미지리사이즈 썸네일형 리스트형 이미지 리사이즈 하는 예 function resize_image() { var target = document.getElementsByName('target_resize_image[]'); var image_width = parseInt(''); var image_height = 0; for(i=0; i image_width) { image_height = parseFloat(target[i].width / target[i].height) target[i].width = image_width; target[i].height = parseInt(image_width / image_height); } } } 더보기 이전 1 다음