js中animate 的使用图片放大缩小效果
牛智志
2023-12-01
$(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)});}
);
});
});