我正在尝试创建一个滑出 div 功能。基本上,它是一个矩形图像地图 - 当您单击地图上的某个位置时,DIV 从右侧滑出以覆盖整个地图。我需要为多个位置(即多个 DIV)执行此操作
我尝试了一些来自 jQuery 的函数,但没有成功。切换效果只允许向上或向下运动,我无法让 .animate 效果按我想要的方式工作。
这个Jfiddle接近我所需要的,但我试图让活动的 DIV 在新的滑入之前滑出(并且 MAP DIV 应该始终保持静态,因此当 DIV 滑出时,您会在新的 div 幻灯片)。
这是 Jfiddle 中的内容:
jQuery(function($) {
$('a.panel').click(function() {
var $target = $($(this).attr('href')),
$other = $target.siblings('.active');
if (!$target.hasClass('active')) {
$other.each(function(index, self) {
var $this = $(this);
$this.removeClass('active').animate({
left: $this.width()
}, 500);
});
$target.addClass('active').show().css({
left: -($target.width())
}).animate({
left: 0
}, 500);
}
});
});