如何在灯箱上获得最小化和恢复功能..?

时间:2012-09-19 06:30:31

标签: jquery-ui jquery jquery-plugins jquery-selectors

像关闭按钮我希望最小化灯箱的功能,所以当它被最小化时,它会到达窗口的底部,只显示标题和最小化按钮转换为恢复按钮所以当我按下它时,该灯箱将出现,如果有的话另一个灯箱打开,他们将被最小化。所以我只想要一个灯箱是opend.i尝试我不知道我将如何做这个如果你可以添加一些魔法代码this is my fiddle请看看它。 谢谢

1 个答案:

答案 0 :(得分:0)

像这样编辑

 $('.lightbox').click(function() {
    var thisBox = $(this).attr("name");
            //console.log(thisBox);
    $('.backdrop,.' + thisBox).animate({
        'opacity': '.50'
    }, 300, 'linear');
    $('.box').animate({
        'opacity': '1.00'
    }, 300, 'linear');
    $('.backdrop,.' + thisBox).css('display', 'block');
});

只需评论console.log(thisBox)