Releases for ctRotator
ctRotator 0.9-rc-1
November 12, 2008 - 10:41am — CuongSize: 61.89 KB
md5_file hash: 3f38eb37f40b1f07ebb804a39ff608cf
First released: November 12, 2008 - 10:41am
Release candidate release. An highly customizable item/image rotating script. Supports creating the rotator from various data sources, such as JavaScript object, HTML UL/OL list, RSS feed, Flickr feed. More data sources can be supported with custom bridges.
Preview the plugin: http://test.thecodecentral.com/ajax-rotator/
Full documentation: http://thecodecentral.com/2008/11/12/ctrotator-a-flexible-itemimage-rota...
Call ctRotator with a data source on a selected element:
<ul id="container"></ul>
<script type="text/javascript">
$('#container').ctRotator(dataSource, {
showCount:5,
speed:1000
});
</script>Format of the data source (can be from other sources):
<script type="text/javascript">
var dataSource = [
{title: 'test', url: 'http://thecodecentral.com', tip: 'Programmer\'s blog for programmers'},
{title: 'test2', url: 'http://thankyouproject.org', tip: 'Fill the World with Thanks'},
{title: 'test3', url: 'http://google.com', tip: 'Search Engine'},
{title: 'test4', url: 'http://yahoo.com', tip: 'La La La'}
];
</script>