jQuery News Scrollers and Tickers with a ListView

The jQuery Cycle plug-in is most often used for creating image slide shows. However, it's just as easy to use to create a news scroller from a ListView. Here, I look a doing just that. I also look at an alternative jQuery plug-in (NewsTicker) that gives the effect of the classic BBC News Ticker.

jQuery Cycle has been round for quite a while, but the vast majority of demos and samples show it being used to display image slideshows. But it is also capable of performing its magic on any set of elements. Headlines are commonly presented as an unordered list of items, and the ListView server control allows for just the right amount of control over html output that working with jQuery plug-ins and ListViews is pretty simple.

We'll have a look at the code-behind for the page first. As a data source for the headlines, I will be using my own RSS feed. This could just as easily be a DataTable from a SQL query or any other collection. I set up a little class to hold each news item:


public class News
{
  public string Url { get; set; }
  public string Headline { get; set; }
  public string Intro { get; set; }
  public DateTime DatePosted { get; set; }
}

And then I create a List<News> by querying the RSS feed in Page_Load():


var file = "http://www.mikesdotnetting.com/rss";
var xml = XDocument.Load(file);
var news = xml.Descendants("item")
  .Select(story => new News
                  {
                    Url = (string)story.Element("link"),
                    Headline = (string)story.Element("title"),
                    DatePosted = (DateTime)story.Element("pubDate")
                  }).ToList();

In the Web Form itself, I have added a ListView:

  

<div id="news1">
    <p class="headlines">
      Fader:
    </p>
    <asp:ListView ID="HeadlineFader" runat="server" EnableViewState="false">
      <LayoutTemplate>
        <ul id="newsfade">
          <asp:PlaceHolder ID="itemPlaceholder" runat="server" />
        </ul>
      </LayoutTemplate>
      <ItemTemplate>
        <li class="newsitems">
          <asp:HyperLink ID="NewsLink" runat="server" 
            NavigateUrl='<%# Eval("Url") %>'
            Text='<%# Eval("Headline")%>' />
        </li>
      </ItemTemplate>
    </asp:ListView>
  </div>


And I have also referenced a couple of javascript files in the <head> area of the document:

  

<script src="Scripts/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="Scripts/jquery.cycle.all.min.js" type="text/javascript"></script>


The second of these is the jQuery Cycle plugin. This plugin has a lot of options, and is pretty mature. For this example, I am going to show the headlines appearing one at a time, but fading out when each one is replaced by the next one. So the first thing I need to do is to bind my List<News> to the ListView in the Code Behind:


HeadlineFader.DataSource = news;
HeadlineFader.DataBind();

Then I need to switch back to the aspx file, and add the following to the <head> area:

  

<script type="text/javascript">
    $(document).ready(function () {

      $('ul#newslist').cycle({
        fx: 'fade',
        speed: 300,
        timeout: 2500
      });
    });
</script>


Having "pointed" the plug in to the unordered list that the ListView will generate and telling it to perform its operations on that ($('ul#newslist').cycle()), I have set 3 options. The first is the effect, which in this case is fade. Other effects are detailed in the documentation. The speed option allows me to define how quickly the fade should act, and the timeout option controls the display duration for each item. All that's needed now is some CSS to line everything up nicely:


body 
{
  font-size: 75%;
  font-family: Verdana;
}
#news1
{
  padding: 20px;
}
#newslist
{
  padding: 0;
  margin: 0;
  height: 20px;
  width: 500px;
  float: left;
}
.newsitems
{
  padding:0;
  margin:0;
}
.headlines
{
  width: 70px;
  float: left;
  padding: 0;
  margin: 0;
}
a
{
  text-decoration: none;
}



Another nice effect can be achieved using the sync and delay options:


$('ul#newsSlide').cycle({
  fx: 'scrollLeft',
  sync: 0,
  timeout: 3500,
  pause: 1
});

The fx value causes items to slide in from the right to the left. sync being 0 (false) ensures that each item waits until the preceding one has disappeared before sliding in. Finally the pause option will stop the animation if you hover your mouse over the headlines. The animation resumes when you move the mouse away.

The second plugin that I shall look at is the News Ticker. This produces the same effect as the javascript news ticker featured in one of my older articles, in that it displays each headline one at a time, but reveals them one letter at a time, giving the effect of the headline being typed live. You can see in the previous article how much client side code was needed to get this to work, but using the plugin is trivial. Keeping the same ListView as before, and having referenced the correct js file in the <head> section, this is all that's needed:


$(document).ready(function () {

  $().newsTicker({
    newsList: "ul#newslist",
    startDelay: 10,
    placeHolder1: " ",
    placeHolder2: "_",
    controls: false,
    stopOnHover: false
  });
});

The options are detailed in the documentation, but this plugin is lightweight on features, and easy to work with. In contrast to the Cycle plugin, the News Ticker is a one-trick pony. Minified, it's 6kb and it does it's one trick nicely. The Cycle plugin on the other hand is packed with options. But the documentation and demo pages are fantastic, so it is just as easy to work with as the News Ticker.

I've put together a download for this article, which was constructed in VS 2010 so you can play with some of the options and see some of the effects in action.