我想爲這個jquery添加一些動畫,此刻div在彈出時彈出。如何添加動畫到這個jQuery?
$(document).ready(function() {
$('.recruiterLink').hover(function() {
$(this).css({
'bottom' : 0
});
}, function() {
$(this).css({
'bottom' : -20
});
});
});
我該怎麼做呢?由於
這是安東尼的最佳解決方案,我寫的完全一樣,+1。 – 2010-11-22 12:04:58
優秀的整潔答案謝謝! – Anthony 2010-11-22 12:17:45