-6

I need to create a jquery script to slide a DIV from

<left: -200px> 

to

<left: 0px> 

after the page loads. I've tried the following, but it doesn't work:

$(window).load(function () {
    $("divID").css("margin-left", -$(this).width()).animate({
        marginLeft: 0
    }, 1000);
});
4

1 回答 1

1

我不知道我为什么要回答这个..你应该认真地学习如何首先在stackoverflow中提问..看起来这是你第一次..

但无论如何....你需要的是$.animate()

执行一组 CSS 属性的自定义动画。

$('#divID').animate({
     left: '0'
 }, 5000);
于 2013-07-25T12:34:50.293 回答