jQuery Resize Plugin Demo

Author: Adeel Ejaz

Introduction

aeImageResize is a jQuery plugin to dynamically resize the images without distorting the proportions.

Usage:

.aeImageResize( params )

Params:

A set of key/value pairs to set the height and width of the bounding box. Only one is required.

height - An integer representing the maximum height for the image.

width - An integer representing the maximum width for the image.

Example

$(function() {
  $( ".resizeme" ).aeImageResize({ height: 250, width: 250 });
});