0
此動畫循環可以更有效地完成嗎?我試圖讓.gameBoxContent向左滑動,然後從右側滑入。在此動畫中,框的內容會發生變化。Animate,Jump Position,Animate
基本上應該在div:
1:滑動遺漏的視圖
2:跳轉右
3:滑動左到視圖
// Slide Left
$('.gameBoxContent').animate({"left": "-950px"}, 400);
// Sure this can be done better
$('.gameBoxContent').animate({"top": "950px"}, 1);
$('.gameBoxContent').animate({"left": "960px"}, 0);
$('.gameBoxContent').animate({"top": "20px"}, 1);
// Slide Right
$('.gameBoxContent').animate({"left": "20px"}, 400);
_ 「可這動畫循環更有效地完成?」 _可以定義 「更有效地」?一個選項可能是將'.animation()'調用「鏈接」到單個,初始'$(「。gameBoxContent」)。animation(options).animation(options)'? – guest271314
我一直在思考如何去除需要滑落的部分。嘗試使元素向左滑動後跳到右側 – James