<!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>
|