gpt4 book ai didi

javascript - 将关闭按钮添加到 JavaScript 动画面板

转载 作者:行者123 更新时间:2023-11-30 18:17:29 24 4
gpt4 key购买 nike

我正在使用以下 javascript 在单击链接时将打开的面板向右滑动。

jQuery(函数($){

$('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
}, 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();
}
});

});

现在我还想在每个面板中添加一个关闭按钮,当点击时,面板应该关闭/向左滑动。

我有这个jsfiddle继续努力

有什么想法吗?谢谢。

最佳答案

给你 -

Working Demo

$('.close').click(function(){        
$(this).closest('.panel').animate({
left: -200
}, 500);
});

关于javascript - 将关闭按钮添加到 JavaScript 动画面板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12913821/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com