最终效果图
源代码:
<スクリプトタイプ = "text/javascript">
functionscroll_news(){
var $firstNode = $('#scroll-container li');
//i の值列数を取得
var iRow = $('#scroll-container').find('li').length – 1;
//デバッガー;
$(function(){
$firstNode.eq(0).fadeOut('slow',function(){
$(this).clone().appendTo($(this).parent ()).fadeIn('slow');
$(this).remove();
});
}
$(document).ready(function(){
go();
});
関数 stop(){
clearInterval(sn);
}
function go(){
sn = setInterval('scroll_news()',2000);
}