Home

Awesome

jQuery TouchTouch

A jQuery 1.7+ plugin that makes it easy to display a set of photos on your site as a touch-optimized photo gallery.

Highlights

How to use

Using it is simple. Drop the <strong>touchTouch</strong> folder (you can find it in the download under <em>assets/</em>) somewhere in your website folder tree. After this, include <strong>touchTouch/touchTouch.css</strong> in your <head>, and <strong>touchTouch.jquery.js</strong> right after the jQuery library. The script depends on <strong>jQuery 1.7</strong> or above.

After you do all this, simply call the gallery as a regular jQuery plugin:

$(function(){

	// Initialize the gallery
	$('.thumbs a').touchTouch();

});

You must pass anchor elements which point to images in their href attributes for the gallery to work. In addition to conveying which images are to be displayed in the gallery, this also provides a graceful fallback in case JavaScript is not available.

Multiple Galleries

To show specific sets of pictures, add a "data-gallery" attribute to <strong>either:</strong>

Each of the anchor tags you want in that set, with a unique value.

	<a href="image.jpg" data-gallery="hongkong" title="Lion Rock"></a>

Or:

Any ancestor containing the elements selected by the plugin. Note that this method takes priority if both are used on the same set.

	<ul data-gallery="hongkong">
		...
	</ul>

Of course you can ignore all this and all selected elements will be displayed.

License

Released under the MIT license

Demo

Go to Tutorialzine for a live demo.