源代码: 复制代码 代码如下: 谷歌主页动画 <BR>.animate{<BR> height:156px;<BR> width:97px;<BR> background:url(images/gumby11-gumby.jpg) no-repeat;<BR> background-position:-15581px center;<BR>}<BR> <BR>$(function(){<BR> var offset = -15678;<BR> $('#start').click(function(){<BR> var timer = setInterval(function(){<BR> offset += 98;<BR> $('#animate').css({<BR> 'background-position':offset + 'px center'<BR> });<BR> if(offset > 0){<BR> clearInterval(timer);<BR> }<BR> },50);<BR> $(this).hide();<BR> });<BR>});<BR> 动起来吧! 其实这动画不难,难在那种图片上,不知道这图片是怎么做出来的!!!