jQuery Vertical Scrolling Web Ticker Plugin - vticker

File Size: 118 KB
Views Total: 19743
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
jQuery Vertical Scrolling Web Ticker Plugin - vticker

vticker is a simple jQuery plugin for creating a vertical scrolling ticker widget with one line of javascript code. Items can be paused when the mouse hovers over an item.

Related plugins:

Basic Usage:

1. Inlcude jQuery library and jQuery vticker plugin on the web page

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="jquery.vticker.js"></script>

2. Create the html for the web ticker

<div id="example">
<ul>
    <li>Item 1</li>
    <li>Item 1</li>
    <li>Item 3</li>
    ...
</ul>
</div>

3. Initialize the plugin.

<script>
$(function() {
$('#example').vTicker();
});
</script>

4. Available options.

<script>
$(function() {
$('#example').vTicker({
speed: 700,
pause: 4000,
showItems: 1,
mousePause: true,
height: 0,
animate: true,
margin: 0,
padding: 0,
startPaused: false});
});
</script>

Change log:

2013-12-07

  • Add remove method

This awesome jQuery plugin is developed by richhollis. For more Advanced Usages, please check the demo page or visit the official website.