Сообщение от майрбек95
|
полет был от кнопки
|
$(function() {
$(".wadd").click(function(event) {
event.preventDefault();
var parent = $(this).parents(".list-item"),
pos = $(this).offset();
$(".gphoto", parent).clone().css({
"position": "absolute",
"z-index": "9999",
"left": pos.left,
"top": pos.top
}).appendTo("body").animate({
opacity: .4,
marginLeft: 700,
marginTop: -600,
width: 80,
height: 80
}, 1E3, function() {
$(this).remove()
})
})
});