майрбек95,
$(function() {
$(".wadd").click(function() {
var parent = $(this).parents(".list-item");
$(".gphoto", parent).clone().css({
"position": "absolute",
"z-index": "9999"
}).appendTo("body").animate({
opacity: .4,
marginLeft: 700,
marginTop: -600,
width: 80,
height: 80
}, 1000, function() {
$(this).remove()
})
})
});