-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
27 lines (21 loc) · 872 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
jquery.fitimage - jQuery plugin to fit images
You're loading images with unknown width and height, but don't want to
stretch the images with wrong aspect ratio. This plugin swaps the
images with a placeholder to load, preloads the actual image in the
background, calculate the size and assign proper margins to fit the
image with given width and height.
Usage:
<script src="jquery.fitimage.js"></script>
<script>
$(document).ready(function(){
$('.fit').fitimage({ placeholder: "/uri/to/placeholder.png" });
});
</script>
...
<div class="container">
<img src="http://example.com/test.jpg" class="fit" style="width:200px;height:200px" />
</div>
For example, if test.jpg's size is 800x600, fitimage() will update the
CSS property of the given img element:
width:200px;height:150px;margin-top:25px;margin-bottom:25px;
See sample.html for more.