我发现的这个例子正是我想要的: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,我无法正确调整它。
谁能帮我这个 ?