I have little problem with jQuery vTicker script. For now the script is sliding up or down only one element at time. I need that script to slide a few elements up at one moment but I dont know if that is possible (for example: I have four elements visible and on the next slide script replaces my all four elements, not only one) . Do u can help me?
My code:
<div id="najnowsze-naglowki">
<ul class="najnowsze">
<li><span class="time">14:38</span>Uwaga! Silny wiatr!</li>
<li><span class="time">14:38</span>Uwaga! Silny wiatr!</li>
<li><span class="time">14:38</span>Uwaga! Silny wiatr!</li>
<li><span class="time">14:38</span>Uwaga! Silny wiatr!</li>
<li><span class="time">14:38</span>Uwaga! Silny wiatr!</li>
<li><span class="time">14:38</span>Uwaga! Silny wiatr!</li>
<li><span class="time">14:38</span>Uwaga! Silny wiatr!</li>
<li><span class="time">14:38</span>Uwaga! Silny wiatr!</li>
</ul>
</div>
And initialization of jQuery vTicker script:
$('#najnowsze-naglowki').vTicker('init', {speed: 400,
pause: 1000,
showItems: 4,
padding:15});
Link to vTicker script: http://richhollis.github.io/vticker/
Not actually a straight forward solution to your problem, but with changing markup you could achieve this
I have checked vTicker documentation, and I couldn't find an option to change 4 items at a time.