Skip to content

tutorialzine/touchTouch

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
April 26, 2012 23:58
December 16, 2012 17:39

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

  • Smooth CSS3 animations and transitions;
  • A responsive CSS interface that fills the screen and responds to changes in device orientation;
  • Preloads photos only when they are needed;
  • Supports swiping through photos;
  • Displays onscreen arrows and listens for arrow key presses on desktop browsers;
  • Supports multiple galleries;

How to use

Using it is simple. Drop the touchTouch folder (you can find it in the download under assets/) somewhere in your website folder tree. After this, include touchTouch/touchTouch.css in your <head>, and touchTouch.jquery.js right after the jQuery library. The script depends on jQuery 1.7 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 either:

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.

About

Touch Optimized Mobile Gallery

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published