$(function () {
$ $('a>img');
imgs.each(function () {
var img = $(this);
var img = $(this);
var height = img.attr('height');//區域高度
var showWidth = width var ratio = width / height;//寬高比
img.load(function () {
'
').attr('src', img.attr('src')).load(function () {
imgWidth = this.width;/1 /圖片實際高度
imgRatio = imgWidth / imgHeight;//實際寬高比
if (ratio > imgRatio) {
/調整寬度太小
img.attr('width', showWidth).css( 'margin-left', (width - showWidth) / 2);
} else { img.attr('height', showHeight). css('margin-top', (height - showHeight) / 2);
}
});
});
這樣就是實現了圖片的等比例放大縮小了。