vote up 3 vote down star

Hi,

I am looking for a little bit of JQuery or JS that allows me to produce a horizontally scrolling "news ticker" list.

The produced HTML needs to be standards compliant as well.

I have tried liScroll but this has a habit of breaking (some content ends up on a second line at the start of the scroll), especially with longer lists.

I have also tried this News Ticker but when a DOCTYPE is included the scrolling will jolt rather than cycle smoothly at the end of each cycle.

Any suggestions are appreciated.

Edit

So thanks to Matt Hinze's suggestion I realised I could do what I wanted to do with JQuery animate (I require continuous scrolling not discrete scrolling like the example). However, I quickly ran into similar problems to those I was having with liScroll and after all that realised a CSS issue (as always) was responsible.

Solution: liScroll - change the default 'var stripWidth = 0' to something like 100, to give a little space and avoid new line wrapping.

flag

5 Answers

vote up 2 vote down check

Smooth Div Scroll can also be used as a news ticker/stock ticker. It can pause on mouse over or mouse down and it can loop endlessly if you want it to.

Here's the example with a running ticker: http://www.maaki.com/thomas/SmoothDivScroll/runningTicker.htm

Regards, Thomas

link|flag
Wow that seems great. – Graphain May 15 at 4:20
vote up 1 vote down

Has anyone seen some easy jquery scrollers out there that are more consistent and continuous?

link|flag
vote up 1 vote down

I wasn't happy with the ones I found on the net, so I rolled my own. This one has a few features

  • Will slow down to half speed when mouse is held over (using hoverIntent plugin, but could easily use hover())
  • Will endlessly scroll - it doubles up the content so it should scroll continually - no gap at the end. Ensure your list has enough items to fill the first gap... you'll see.

    var newsTicker = { scrollSpeed: 100, shiftPixels: 5, movePixels: 0, // calculated later

        init: function() {
            var self = this;
            var ticker = $('#ticker');
    
    
    
        ticker.after('<div id="ticker-right"></div><div id="ticker-left"></div>'); // divs to hold ticker fading
    
    
        var firstList = ticker.find('ul:first');
        self.movePixels = self.shiftPixels;
    
    
        var tickerWidth = 0;
    
    
        firstList.find('li').each(function() {
            $(this).html($(this).html() + '<span>•</span>'); // using append() doesn't calculate correct width in Safari
            tickerWidth += $(this).outerWidth();  
           //$('body').prepend($(this).outerWidth(true) + '<br />');
        });
    
    
        var secondListHtml = '<ul class="second">' + firstList.html() + '</ul>';
        firstList.after(secondListHtml);
        var secondList = ticker.find('ul:last');
        var bothLists = ticker.find('ul');
        secondList.css({left: tickerWidth})
        bothLists.css({width: tickerWidth});
        ticker.hoverIntent(function(){
    			self.movePixels = Math.round(self.shiftPixels / 2);
    	},function(){
    	  		self.movePixels = self.shiftPixels;
            });
    
    
        setInterval(function() {
            bothLists.each(function() {
                var newLeft = $(this).position().left - self.movePixels + 'px';
                 $(this).css({left: newLeft});
                    var left = $(this).position().left;
                    if (left < tickerWidth * -1) { // reset left if the ticker has finished
                        $(this).css({left: tickerWidth});
                    }
            });
    
    
        }, this.scrollSpeed);
    }
    
    }
link|flag
Thanks Alex, I look forward to checking it out next time a client wants this and will remember to send feedback here! – Graphain Jun 5 at 5:51
No worries Graphain. Just change some of the jQuery selectors to suite, and call newsTicker.init() .. – alex Jun 5 at 6:25
vote up 1 vote down

Here's 2 other solutions that seem a bit simpler to implement:

  1. newsticker
  2. News ticker (BBC style)
link|flag
vote up 3 vote down

http://www.emrecamdere.com/news_scroller_jquery.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.