티스토리 뷰
$(document).ready(function() {
$('.story-small img').each(function() {
var maxWidth = 100; // Max width for the image
var maxHeight = 100; // Max height for the image
var ratio = 0; // Used for aspect ratio
var width = $(this).width(); // Current image width
var height = $(this).height(); // Current image height
// Check if the current width is larger than the max
if(width > maxWidth){
ratio = maxWidth / width; // get ratio for scaling image
$(this).css("width", maxWidth); // Set new width
$(this).css("height", height * ratio); // Scale height based on ratio
height = height * ratio; // Reset height to match scaled image
}
var width = $(this).width(); // Current image width
var height = $(this).height(); // Current image height
// Check if current height is larger than max
if(height > maxHeight){
ratio = maxHeight / height; // get ratio for scaling image
$(this).css("height", maxHeight); // Set new height
$(this).css("width", width * ratio); // Scale width based on ratio
width = width * ratio; // Reset width to match scaled image
}
});
http://ymson.tistory.com/entry/%EB%B9%84%EC%9C%A8-%EC%9C%A0%EC%A7%80%ED%95%98%EB%A9%B0-%EC%9D%B4%EB%AF%B8%EC%A7%80-%EC%82%AC%EC%9D%B4%EC%A6%88-%EC%A1%B0%EC%A0%88%ED%95%98%EA%B8%B0
'javascript' 카테고리의 다른 글
iframe에서 클릭이 생길때 클릭 이벤트를 알아내기 (1) | 2016.04.21 |
---|---|
Jquery 속도 향상 (2) | 2015.10.29 |
JQuery Plug-in Group Image (0) | 2015.09.10 |
특수문자표 (0) | 2015.08.19 |
이미지 로딩 지연으로 페이지 로딩 속도 단축(jquery.lazyload) (0) | 2015.08.19 |
댓글