Hi there,
I have setup a jquery based marquee,
This works perfectly fine until I have attempted to add in pausing the marquee on hover.
On hover it pauses it fine,
But upon resuming there is a gap after the current marquee.
What would be causing this?
A working example is at: http://202.78.151.195/marquee.html
The javascript is at: http://202.78.151.195/jquery-marquee.js
The plugin uses another plugin, Jquery pause: http://202.78.151.195/jquery.pause.js
Pause/resume code for animations
list.parent('div').hover(
function(){
list.stop();
timer1.pause();
timer2.pause();
},
function(){
timer1.resume();
timer2.resume();
move(list,left);
}
);