當您單擊箭頭(#hide)時,我試圖讓頂部的菜單欄(.top-bar)滑出,因此箭頭也需要向上滑動。除此之外,箭頭需要切換(從向上箭頭到向下箭頭)。 這是我試過,沒有運氣:單擊滑出菜單欄
$(document).ready(function(){
$("#hide").click(function(){
$(".top-bar").animate({'top': '-=100px'}, 1000);
$("#hide").animate({'top': '-=100px'}, 1000);
$(".close").switchClass('close', 'open', [1000]);
},
function(){
$(".top-bar").animate({'top': '+=100px'}, 1000);
$("#hide").animate({'top': '+=100px'}, 1000);
$(".open").switchClass('open', 'close', [1000]);
});
});
格里茲是正確的。如果有人回答你的問題,一定要接受這個答案,以便他們得到你的幫助。 – 2011-12-20 03:03:35