jquery는 ie6/Chrome/Firefox_jquery와 호환되는 이미지 그라데이션 전환을 구현합니다.
jquery
复代码码 代码如下:
<머리>
<본문>
<스크립트>
var switchSpeed = 1000; //그림切换时间
var fadeSpeed = 1500; //渐变时间
setInterval(function(){
$('img').last().fadeOut(fadeSpeed, function(){
$(this).show().parent() .prependTo($('ul'));
}), switchSpeed);