I recommend you the responsive plugin blueimp Gallery, you can download it and inside the zip there will be some examples, it is quite simple, you link the css and js (jquery is necessary), then have a basic script to load the plugin on the page and then just use the html structure that the site gives you of the images... Have a documentation session of the plugin... Any questions, posted here...
I switched to jquery in a project of mine, I believe I can help you... Replacing id link with a link class in the html structure...
$(function(){
$('.link').each(function(){
$(this).click(function(event){
event = event || window.event;
var target = event.target || event.srcElement,
link = target.src ? target.parentNode : target,
options = {index: link, event: event},
links = this.getElementsByTagName('a');
blueimp.Gallery(links, options);
});
});
});
You need a zoom gallery or want to learn how to make one?
– Rodrigo Mello
I need something like colorbox. It might be some plugin ready. Everything I did in colorbox with in Wordpress. I never had to install one in hand.
– Felipe Viero Goulart