image zoom tests
64 image zoom tests
test about pictures in NEWS and ARTICLE and how to zoom them
with html image, anchor, js...
only HTML image tag ( here can use your browser "VIEW IMAGE" function on right click )
use link ( here you can click on the image )
use script (jquery.elevatezoom.js) from
// image zoom in function.php function get_footer() of theme itune
and in article use
or only
with a different number for each image!
$('#zoom_01').elevateZoom();
$('#zoom_02').elevateZoom();
use script (jquery.prettyPhoto.js) from
// image zoom in function.php function get_footer() of theme itune
and in article use
$(document).ready(function(){
$("area[rel^='prettyPhoto']").prettyPhoto();
$(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'light_square',slideshow:3000, autoplay_slideshow: true});
$(".gallery:gt(0) a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'fast',slideshow:10000, hideflash: true});
$("#custom_content a[rel^='prettyPhoto']:first").prettyPhoto({
custom_markup: '',
changepicturecallback: function(){ initialize(); }
});
$("#custom_content a[rel^='prettyPhoto']:last").prettyPhoto({
custom_markup: '',
changepicturecallback: function(){ _bsap.exec(); }
});
});
