meka komada machan add karanne
Its the same script used in your sample.
Include jQuery and that script.
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://raw.githubusercontent.com/jonmifsud/Web-Ticker/master/jquery.webticker.js"></script>
Initiate script.
<script>
jQuery('#webticker').webTicker()
//where webTicker is the id of the container you would like the ticker to run upon
</script>
CSS -
<style>
.tickercontainer
//width of the original container in which the ticker appears
.tickercontainer .mask
//can be used to achieve padding within the container
ul.newsticker {
//important to enable css3 transitions properly
-webkit-transition: all 0s linear;
-moz-transition: all 0s linear;
-o-transition: all 0s linear;
transition: all 0s linear;
list-style:none;
margin:0;
}
</style>
HTML (add more LI and place whatever content you need) -
<ul id="webticker">
<li>My First News Item</li>
<li>My Second News Item</li>
<li>My Third News Item</li>
</ul>