嗨,因为我是这个 jquery 的新手,任何人都可以帮我解决这个问题我想显示 div 并在转换后隐藏潜水这里是脚本
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();
}
});
});