1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
<html>
<head>
<script src="smooth/scripts/mootools-1.2.1-core-yc.js" type="text/javascript"></script>
<script src="smooth/scripts/mootools-1.2-more.js" type="text/javascript"></script>
<script src="smooth/scripts/jd.gallery.js" type="text/javascript"></script>
<link rel="stylesheet" href="smooth/css/jd.gallery.css" media="screen" type="text/css"/>
</head>
<body>
<script type="text/javascript">
function startGallery() {
var myGallery = new gallery($('myGallery'), {
timed: true
});
}
window.addEvent('domready', startGallery);
</script>
<div id="myGallery">
<div class="imageElement">
<h3>Item 1 Title</h3>
<p>Item 1 Description</p>
<a href="gallery-images/item-1/" title="open image" class="open"></a>
<img alt="Item 1 Title" src="http://smoothgallery.jondesign.net/assets/images/samples/77196_6784-gallery.jpg" class="full"/>
<img alt="thumbnail of Item 1 Title" src="http://smoothgallery.jondesign.net/assets/images/samples/77196_6784-mini.jpg" class="thumbnail"/>
</div>
</div>
</body>
</html>
|