Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 628 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 628 Bytes

#jQuery Image Resize Plugin

Version: v2.1.3

A super light jQuery plugin (less than 0.5KB) to dynamically resize the images without distorting the proportions or adding any extra HTML.

Please note you can also resize images using CSS: http://adeelejaz.com/blog/resize-image-without-using-javascript-or-jquery/

####HTML:

<img class="resizeme" src="sample1.jpg">

####JavaScript

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

####Options height An integer representing the maximum height for the image.

width An integer representing the maximum width for the image.