I have a sample site here that uses a content slider on the home page. My client is requesting that the slides continue scrolling through instead of jumping back to the first slide after they have all played through. The slider is using jQuery.easing['jswing'] = jQuery.easing['swing']; and the function easeOutQuad. I've tried other functions but I can't get it to loop instead of snapping back to the first slide. Any advice would be greatly appreciated!

Below is the jquery code from the template header:

<script type="text/javascript" charset="utf-8">

var theme_template_dir = jQuery("meta[name=theme_template_dir]").attr('content');

$(document).ready(function() {

$('div.photo a').fancyZoom({directory: theme_template_dir + '/images/zoom', scaleImg: true, closeOnClick: true});

var buttons = { previous:$('#lofslidecontent45 .lof-previous') ,

next:$('#lofslidecontent45 .lof-next') };

$obj = $('#lofslidecontent45').lofJSidernews( { interval: 5000,

easing: 'easeInOutQuad',    

duration: 1200,

auto    : true,

mainWidth:960,

buttons: buttons} );    

});

Cufon.replace('h1,h2,h3,h4,h5,#menu,#copy,.blog-date');

</script>
link|improve this question
3  
The webpage doesn't work for me (Host not found). Regardless, StackOverflow questions should stand alone from any external content. – Matt Aug 5 '11 at 16:14
well, it should, however if the external content worked.... – rlemon Aug 5 '11 at 16:18
sorry, I had the wrong url. It's a .com. So we are not supposed to have external links to examples? – Andrew Aug 5 '11 at 16:26
No there's nothing wrong with an external link. Just make sure you post the relevant code on SO as well so that if the external site were to disappear, the solution would still be possibly helpful to someone in the future. – Joseph Marikle Aug 5 '11 at 17:07
1  
@pixelbobby: Thanks! I just added the fade which took care of my issue above, so I'll take your advice and try to get something smoother going. – Andrew Aug 5 '11 at 18:17
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.