//resim adlı classları 100*100 ebatında boyutlandırmak için
$(document).ready(function() {
$('.resim').each(function() {
var maxWidth = 100;
var maxHeight = 100;
var ratio = 0;
var width = $(this).width();
var height = $(this).height();
if(width > maxWidth){
ratio = maxWidth / width;
$(this).css("width", maxWidth);
$(this).css("height", height * ratio);
height = height * ratio;
width = width * ratio;
}
if(height > maxHeight){
ratio = maxHeight / height;
$(this).css("height", maxHeight);
$(this).css("width", width * ratio);
width = width * ratio;
}
});
}); |