私が見つけたこの例は、まさに私が探していたものです:http: //jsfiddle.net/sg3s/RZpbK/ Thx to the author 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に精通しておらず、適切に調整することができません。
誰かがこれで私を助けることができますか?