What I would like to do is dictate where my thumbnails are instead of using the main images as the thumbnail.
I'm pretty sure this can be done, I just need a little push in the right direction.
Here is my Code:
<script type="text/javascript">
$('#imageContainer').before('').cycle({ fx: 'fade', speed: 2000, timeout: 8000, pager: '#nav',
// callback fn that creates a thumbnail to use as pager anchor
pagerAnchorBuilder: function(i, slide) {
return '<li><a href="#"><img src="' + slide.src + '" width="121" height="67" /></a></li>';
}
});
And here is the HTML:
<div id="container">
<div id="imageContainer">
<img src="http://www.ifcj.org/ifcj-08/images/elements/slideshow/1.jpg" rel="http://www.ifcj.org/ifcj-08/images/elements/slideshow/1t.jpg" width="378" height="210" />
<img src="http://www.ifcj.org/ifcj-08/images/elements/slideshow/2.jpg" rel="http://www.ifcj.org/ifcj-08/images/elements/slideshow/2t.jpg" width="378" height="210" />
<img src="http://www.ifcj.org/ifcj-08/images/elements/slideshow/3.jpg" rel="http://www.ifcj.org/ifcj-08/images/elements/slideshow/3t.jpg" width="378" height="210" />
</div>
<div id="nav"></div>
Any help would do.
thank You