天天看點

js中animate 的使用圖檔放大縮小效果

$(function(){

$("span>img").each(function(){

$(this).hover(

function(){

$(this).stop().animate({'max-width':600,'opacity':0},1000,

function(){$(this).css('opacity',1)})},

function(){

$(this).stop().animate({'max-width':200,'opacity':0},1000,

function(){$(this).css('opacity',1)});}

);

});

});

js