<script> <BR>var switchSpeed = 1000; //图片切换时间 <BR>var fadeSpeed = 1500; //渐变时间 <BR>setInterval(function(){ <BR>$('img').last().fadeOut(fadeSpeed, function(){ <BR>$(this).show().parent().prependTo($('ul')); <BR>}); <BR>}, switchSpeed); <BR></script>
效果预览:http://quchen.cau.edu.cn/jsDev/gradien.html