Well, from the demo, the SAG scroller demo #2 is auto, so would qualify for this (from the demo page, Step 1, additions highlighted):
Code:
//SAG scroller demo #2:
var sagscroller2=new sagscroller({
id:'mysagscroller2',
mode: 'auto',
pause: 2500,
navpanel: {show: false},
animatespeed: 400 //<--no comma following last option
});
jQuery(function($){
$('#mysagscroller2').hover(function(){
sagscroller2.stopscroll();
}, function(){
sagscroller2.scrollmsg(true);
});
});
Note: The variable name, sagscroller2 must agree where colored red (three places), and the id, mysagscroller2 must agree where colored green (two places).
Or, if you still want the navpanel:
Code:
var sagscroller2=new sagscroller({
id:'mysagscroller2',
mode: 'auto',
pause: 2500,
animatespeed: 400 //<--no comma following last option
});
jQuery(function($){
var sag = sagscroller2;
$('#mysagscroller2').hover(function(){
sag.stopscroll();
}, function(){
sag.stopscroll();
sag.scrollmsg(true);
}).find('.sliderdesctext').unbind('click').click(function(){
sag.stopscroll();
sag.scrollmsg(false);
});
});
Bookmarks