Thank you very much for your donation.
Any amount helps out with hosting fees and will be used as best it can to further the project and make it as good as it can be.
Have a great day!
QUICKzoom is a jQuery plugin to provide a sleek and customisable way to enlarge image thumbnails.
At the time of writing it is only in it's first release and still needs user and browser testing. If you've found a bug or have a feature request, head over to louis-sawtell.com and leave a comment.
The QUICKzoom plugin has been so far tested on..(in OS X)
Due to z-index issues with IE 6 and 7, gallery use of QUICKzoom may not behave as desired
...Sorry, terrible joke, but it is a simple process to change the easing effects with thanks to the easing plugin
Simply add the ease option in the function call, find out more.
Some examples:
<script type="text/javascript"> ... easeIn: 'easeInOutBack', easeOut: 'easeOutElastic', titleInEase: 'easeOutBounce', titleOutEase: 'easeInSine' ... </script>
Having some problems getting the plugin to work?
<ul class="quickZoom">
<li><img src="images/1.jpg" alt="title" />
<span>An example title</span></li>
<li><a href="#"><img src="images/2.jpg" alt="title" /></a>
<span>An image as a link</span></li>
<li><img src="images/3.jpg" alt="title" />
<span><a href="#">A title as a link</span></a></li>
</ul>
Note: The image and wrapper (<li> in this case) must have their dimensions defined as the same values, i.e.
.qZoom li, .qZoom img {width:100px; height:100px;}
<script type="text/javascript">
$(document).ready(function() {
// speed up the code by using an ID
$('#divID .quickZoom li').quickZoom({
zoom: 2,
speedIn:500,
speedOut: 200,
easeIn:'easeOutBack',
titleInSpeed: 200,
});
});
</script>
This is an example title
If you put in a really long caption it will extend within the picture across multiple lines
You can also add a line
You can put the image into a link
You can also put a link in the caption
What are you waiting for?