]> git.mxchange.org Git - friendica.git/blob - view/theme/diabook/diabook-dark/js/README
diabook-themes: add diabook-dark
[friendica.git] / view / theme / diabook / diabook-dark / js / README
1 jQuery Resize Plugin Demo
2
3 Version: v2.1.1
4 Author: Adeel Ejaz (http://adeelejaz.com/)
5 License: Dual licensed under MIT and GPL licenses.
6
7 Introduction
8 aeImageResize is a jQuery plugin to dynamically resize the images without distorting the proportions.
9
10 Usage:
11 .aeImageResize( height, width )
12
13 height
14 An integer representing the maximum height for the image.
15
16 width
17 An integer representing the maximum width for the image.
18
19 Example
20 $(function() {
21   $( ".resizeme" ).aeImageResize({ height: 250, width: 250 });
22 });