jquery 飞入购物车效果
$(function(){
$('.wdl_77').bind('click',function(){
var flyElm = $(this).parents('.molwd').find('.nulnd img').clone().css('opacity','0.6');
flyElm.css({
'z-index': 9000,
'display': 'block',
'position': 'absolute',
'top': $(this).parents('.molwd').find('.nulnd img').offset().top +'px',
'left': $(this).parents('.molwd').find('.nulnd img').offset().left +'px',
'width': $(this).parents('.molwd').find('.nulnd img').width()/2 +'px',
'height': $(this).parents('.molwd').find('.nulnd img').height()/2 +'px'
});
$('body').append(flyElm);
flyElm.stop().animate({
top:$('.dile').offset().top,
left:$('.dile').offset().left,
width:50,
height:50,
opacity:0
},'slow',function(){
flyElm.remove();
});
});
});
浙公网安备 33010602011771号