-1
移動從一個地方到另一個地方堆的效果怎樣才能讓卡片堆棧從一個地方移動到另一個使用jQuery怎樣才能讓卡使用jQuery
SOMT這樣的事http://www.linkedin.com/
效果我試過,但它不工作:
$("#img2 li").each(function() {
var el = $(this);
// Make it static
el.css({
visibility: 'hidden', // Hide it so the position change isn't visible
position: 'static'
});
// Get the static position
var end = el.position();
// Turn it back to absolute
el.css({
visibility: 'visible', // Show it
position: 'absolute'
}).animate({ // Animate to the static position
top: end.top,
left: end.left
}, function() { // Make it static
$(this).css('position', 'static');
});
});
作爲首發:http://codepen.io/secondfret/pen/Hiwef –