jQuery .animate队列不起作用

时间:2010-11-05 10:42:48

标签: javascript jquery syntax jquery-animate

Dreamweaver会出错。什么是正确的语法?

第一次

之后
  

.animate({left:' - = 980'},550,

真正的优点是:我只能在此代码中使用一个“.animate({left:' - = 980'},550,”如果我想添加两个(或更多),则会出现错误).animate在动画队列中。

顺便说一句:“clicknr”变量和“禁用”CSS类 - 只是某些内部过程的标志。

$('#fwdShowroom').click(function() {
    $button = $(this);
    if ( clicknr != 1 )  {
        if( !$button.hasClass( 'disabled' ) ) {
            $button.addClass( 'disabled' );
            clicknr -= 1,
              $('#showroom ul')
                .animate({left: '-=985'}, 550,
                     Dreamweaver says: Error on this line        .animate({left: '+=5'},200,
                function() { $button.removeClass('disabled') });
        }
    }
});

所需的效果是:“#showroom ul”DIV平滑地向前移动,然后平滑地移动一些像素以创建一个很好的物理运动。

1 个答案:

答案 0 :(得分:2)

您忘记了第一个)来电中的右括号animate

.animate({left: '-=985'},550)