$(window).load(function () { $(".tyimg").css("position", "relative"); var tyimgW = $(".tyimg").width(); //200 var tyimgH = $(".tyimg").height(); //400 $(".tyimg img").each(function () { $(this).css("position", "absolute"); var ThisImgW = $(this).width(); //300 var ThisImgH = $(this).height(); //700 if ((ThisImgH / ThisImgW) > (tyimgH / tyimgW)) { $(this).width(parseInt(ThisImgW / ThisImgH * tyimgH)); $(this).height(tyimgH); $(this).css("top", "-1px"); $(this).css("left", (parseInt(tyimgW - ThisImgW / ThisImgH * tyimgH) / 2) + "px"); } else { $(this).width(tyimgW); $(this).height(parseInt(ThisImgH / ThisImgW * tyimgW)); $(this).css("top", (parseInt(tyimgH - ThisImgH / ThisImgW * tyimgW) / 2) + "px"); $(this).css("left", "-1px"); } }); });