Dynamica

The only jQuery plugin to dynamically load images in bulk from the server.

Download

Dynamica

About

Dynamica is a unique jQuery plugin that helps with the creation of large scale image galleries. As Web Designers or Developers, we all know what a pain it is to hand-code each image into our website, especially with 20+ images. Now we don't have to!

Thanks to jQuery and it's ajax capabilities, we can just chuck a heap load of images into a folder on the server and let the code dynamically load them into the page.

The idea came about because I needed it for this exact use. And for the life of me I could not find an existing plugin that did the job. Sure there's gallery plugins that say they can dynamically add images. But they never worked for me. So this, as far as I am aware is THE ONLY plugin that just dynamically adds images from the server.

"Why don't you use php?" - I hear you all cry. Well, with php you cannot fully customise the images and integrate them with a jQuery gallery/carousel plugin.

Dynamica

Usage

The Basic Setup

									
$(".example").dynamica({
	directory: "Images/Gallery%20Images/"		
});
							
						
										
setTimeout(function(){
	// Make sure Dynamica loads all images into page 
	// first before we call any gallery plugins
	
	[Call gallery plugins here]

}, 500);
							
						

Options

							
$(".example").dynamica({
	directory: "",
	imgWrapperClass: "",
	dataSrc:false,
	imgAttributes: {
	},
	caption: true,
	captionClass: "caption",
	customCaption: false,
	customCaption_HTML: {
	}
});
							
						

Dynamica

Option Definitions

Dynamica

Demo