嗨,我是新來這個jQuery可以在任何一個可以幫助我解決這個 我想顯示div和隱藏潛水trasnsition後這裏是腳本jQuery的顯示塊/無
jQuery(function($) {
$('a.panel').click(function() {
var $target = $($(this).attr('href')),
$other = $target.siblings('.active'),
animIn = function() {
$target.addClass('active').show().css({
left: -($target.width())
}).animate({
left: 0
}, 300);
};
if (!$target.hasClass('active') && $other.length > 0) {
$other.each(function(index, self) {
var $this = $(this);
$this.removeClass('active').animate({
left: -$this.width()
}, 300, animIn);
});
} else if (!$target.hasClass('active')) {
animIn();
}
});
});
您的代碼顯示/隱藏是相同的。 – M1K1O
@ M1K1O抱歉,我沒有更改複製後的隱藏部分 – Rex
它如何工作?您必須在** hide **行中將'block'更改爲'none'。 – M1K1O