I found
jQuery the other day while looking for a ticker tape scolling control to put in an ASP.Net page. I found this very neat example at this
site which also has some other concise jQuery examples. There is one problem with the liScroll code however. If the width of the total number of ticker tape items is short compared to the ticker window then the speed of the tape changes after the stop on hover over. I think this is down to the following lines:
var defTiming = stripWidth/settings.travelocity;
var totalTravel = stripWidth+containerWidth;
The timing needs to be a factor of the total distance the div is moving, not just the width of the div. I think it should be:
var totalTravel = stripWidth+containerWidth;
var defTiming = totalTravel/settings.travelocity;