後離開,我需要創建一個jQuery腳本在頁面加載後一個DIV從幻燈片DIV從負載的網站
<left: -200px>
滑到
<left: 0px>
。我試過以下,但它不工作:
$(window).load(function() {
$("divID").css("margin-left", -$(this).width()).animate({
marginLeft: 0
}, 1000);
});
後離開,我需要創建一個jQuery腳本在頁面加載後一個DIV從幻燈片DIV從負載的網站
<left: -200px>
滑到
<left: 0px>
。我試過以下,但它不工作:
$(window).load(function() {
$("divID").css("margin-left", -$(this).width()).animate({
marginLeft: 0
}, 1000);
});
我不知道爲什麼我回答這個....你應該認真,learn how to ask question in stackoverflow first ..看起來這是您第一次..
但反正....你需要的是$.animate()
執行一組CSS屬性的自定義動畫。
$('#divID').animate({
left: '0'
}, 5000);
哦..我看到.. $ 10000個please.you必須用手給它。 –
你應該對解決你自己的問題表現出一些興趣 – svillamayor
你可以找到比suresh更便宜的開發者,但是使用suresh你知道你的錢將會在手中... –