Simple ticker plugin using jQuery.
1.Described jquery.simapleTicker.css and jquery.simpleTicker.css as follows :
<link href="/jquery.simpleTicker/jquery.simpleTicker.css" rel="stylesheet">
<script src="/jquery.simpleTicker/jquery.simpleTicker.js"></script>
2.Described target list.
<div id="ticker" class="ticker">
<ul>
<li>testestest1</li>
<li>testestest2</li>
<li>testestest3</li>
<li>testestest4</li>
<li>testestest5</li>
</ul>
</div>
3.Described javascript code as follows
<script>
$(function(){
$.simpleTicker($("#ticker"));
});
</script>
Please check the demo/demo.html for details.
It has been tested on the following versions
- 1.8.3
- 2.2.4
- 3.4.0
Copyright (c) 2012-2019 miraoto The plugin is available as open source under the terms of the MIT License.