1

我发现的这个例子正是我想要的:http: //jsfiddle.net/sg3s/RZpbK/感谢作者sg3s

jQuery(function($) {

    $('a.panel').click(function() {
        var $target = $($(this).attr('href')),
            $other = $target.siblings('.active'),
            animIn = function () {
                $target.addClass('active').show().css({
                    right: -($target.width())
                }).animate({
                    left: 0
                }, 500);
            };

        if (!$target.hasClass('active') && $other.length > 0) {
            $other.each(function(index, self) {
                var $this = $(this);
                $this.removeClass('active').animate({
                    left: -$this.width()
                }, 500, animIn);
            });
        } else if (!$target.hasClass('active')) {
            animIn();
        }
    });

});

但我遇到了一个小问题。我希望面板从右侧“打开”和“关闭”。我不熟悉javascript,我无法正确调整它。

谁能帮我这个 ?

4

3 回答 3

1

像这样?

http://jsfiddle.net/RZpbK/845/

我所做的只是将 animIn 修改为:

            animIn = function () {
            $target.addClass('active').show().css({
                left: +($target.width())
            }).animate({
                left: 0
            }, 500);
        };
于 2013-03-24T17:00:26.700 回答
0

根据您之前的评论,这更符合您的要求吗?

http://jsfiddle.net/RZpbK/847/

只是将其更改为 animIn 立即执行,而不是在淡出完成后作为回调执行。

$this.removeClass('active').animate({
                left: -$this.width()
            }, 500);
            animIn();
于 2013-03-24T17:13:31.850 回答
0

只需在两个地方都left: -($target.width())替换为left: $target.width()

于 2013-03-24T17:03:21.657 回答