Trying to set no-repeat on images for a slideshow
Hello,
I'm trying to work around flash and use jquery for some text that will fade in. I've got it working using a jquery slideshow on my static test page but I'd like to have the slideshow not repeat once it gets to the last slide. below is my javascript file for the slideshow.
Any help would be appreciated.
function SlideProducts() {
$('#oneslides').cycle({
fx: 'fade',
speedIn: 1500,
speedOut: 1000,
timeout: 2000
});
}
function StartTimer() {
SlideProducts();
setTimeout(function() {
StartTimer();
}, 64000);
}
function StartAnimations() {
SlideProducts();
}
$(document).ready(
function() {
StartAnimations();
setTimeout(function() {
StartTimer();
}, 64000);
}
);
thanks
Amit