File: example.html

Recommend this page to a friend!
  Classes of John Diaz   jQuery Lazy Load Gallery   example.html   Download  
File: example.html
Role: Example script
Content type: text/plain
Description: Example File
Class: jQuery Lazy Load Gallery
Plugin to show gallery of images loaded via AJAX
Author: By
Last change:
Date: 9 years ago
Size: 547 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html> <head> <title>jQuery Lazy Load Image Gallery v.1.0.0</title> <script src="http://code.jquery.com/jquery-1.11.1.js"></script> <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script> </head> <body> <script type="text/javascript"> $(function($) { $("#image-gallery").ajaxGallery({ imagePath: "images/", images: ['1.jpg','2.jpg','3.jpg'] }); }); </script> <div class="gallery" id="image-gallery">Javascript needed.</div> </body> </html>