Currently, I'm doing up an auto-scroll function for a list on my site.
However, after the first item in the list disappears, the second one kinds of 'jump in to position' of the first item. What i want to know if it is possible to make the second item slide in to position in jquery and how can i do it? The following is the javascript code and html. Thanks for any help in advance.
Javascript:
<script>
var ad_refresh=setInterval(function(){
var $target=$("div.manufacturer_list ul li:eq(1)");
var position_1 = $target.position();
$target.fadeOut('slow', function(){
$target.appendTo('div.manufacturer_list ul').show();
});
},5000);
</script>
HTML(Sample) generated:
<div class="manufacturer_list">
<ul>
<li style="float:left;width:200px">Item 1</li>
<li style="float:left;width:200px">Item 2</li>
<li style="float:left;width:200px">Item 3</li>
<li style="float:left;width:200px">Item 4</li>
<li style="float:left;width:200px">Item 5</li>
...
...
...
</ul>
</div>