제이쿼리 이미지 사이즈 구하기
본문
아래 예제로 하면 업로드된 업로드 이미지 사이즈가 나오더라고요
저는 화면에 보이는 리사이징된 값을 구하고 싶은데 방법이 없을까요?
var img = $("#map"); // Get my img elem
var pic_real_width, pic_real_height;
$("<img/>") // Make in memory copy of image to avoid css issues
.attr("src", $(img).attr("src"))
.load(function() {
pic_real_width = this.width ; // Note: $(this).width() will not
pic_real_height = this.height ; // work for in memory images.
alert( '' + pic_real_width + ',' + pic_real_height )
});
답변 1
var rect = img.getBoundingClientRect();
// 화면에 보이는 사각형 정보를 가져옴
rect.width
rect.height
를 확인하면 될거에요
답변을 작성하시기 전에 로그인 해주세요.