A jQuery Horizontal Scrolling News Ticker

Gian Carlo Mingati has made life particularly easy for you if you are in search for a simple to implement, yet powerful and customizable side-scrolling (in other words horizontal) news ticker widget.

His liScroll jQuery plugin takes any old unordered (ul) list with a unique ID and transforms it into a simple side-scrolling news ticker that has a variable speed control and also actually pauses on mouseover events, making navigation from the bar particularly easy.

To use his creation, simply do the following:

First create your necessary markup, e.g.:

<ul id="ticker01">
	<li><span>10/10/2007</span><a href="#">The first thing ...</a></li>
	<li><span>10/10/2007</span><a href="#">End up doing is ...</a></li>
	<li><span>10/10/2007</span><a href="#">The code that you ...</a></li>
</ul>

Next, apply the jQuery magic to it:

$(function(){
$("ul#ticker01").liScroll();
});

That’s it, all done. And if you want to control the scroll speed, simply modify the travelocity parameter as follows:

$(function(){
$("ul#ticker02").liScroll({travelocity: 0.15});
});

You can grab Gian’s useful bit of code here: http://bit.ly/hNelh

Note: Don’t forget to copy off the required liScroll style declarations embedded in the demo page. Without them the ticker won’t actually work – which leads to a lot of unnecessary frustration I tell you! ;)

Related Link: http://bit.ly/hNelh

About Craig Lotter

Craig Lotter is a 29-ish year old software and web developer by trade (currently working for Touchwork), who also just happens to never have been able to shake off that pesky inner child within. Call him a fanboy, geek, nerd or whatever you want, just so long as you enjoy what he writes. His main personal site can be found at http://www.craiglotter.co.za and his webcomic, House of C can be found at http://www.houseofc.codeunit.co.za/
This entry was posted in Technology & Code and tagged , , , , . Bookmark the permalink.
  • Renee
    Does anyone have an idea as to how I can get the list items to appear in a random order? Thanks!
  • Iopl
    7878978
  • Dasd
    qwqwq
  • You could probably rewrite the script to load the list elements into an array and then shuffle the array before spitting them out, but I don't believe there is a native way of doing it with Gian Carlo Mingati's original code...
  • Hi Jennifer. Looking at the site in Firefox, the scrolling ticker tape seems to be working fine on the site? what exactly isn't working?
    .-= Craig´s last blog ..And so the Quest to Become a Father Begins =-.
  • I am trying to get this work on this website above...I'm not sure what I am missing. Can you advise? I would really appreciate this! Thanks in advance.

    Jennifer Niles
  • Well, at least you managed to figure it out all by yourself it would seem, so you may as well give yourself a pat on the back then, no?
    .-= Craig´s last blog ..Wissing Weber =-.
  • Idiots on idiots
    The guy is an idiot, and so are you.

    His site doesn't mention anything about the stylesheets (but of course I knew it could need some, magically wrapped up in the javascript perhaps? no) and doesn't give ANY INDICATION, nor does he give a CLEAN demo page or zip or a link to a minimal style sheet.

    And you ALSO fail to mention this fucktardery, except in your faggot comments.
  • Strange. Works fine for me in IE8. Did you try taking all the associated styles off the demo page and work with them? Find that bit of customisation is by far the most important to get it working - for an example of where I used it: http://www.espreports.com/magretail/
  • Damian
    Thanks for the post. Unfortunatly the code has some bugs in IE8.