LHJ

I'm a FE developer.

jquery - info 레이아웃, slideUp, slideDown

17 May 2020 » jquery
(function (win, $) {
    $('.list_ul').on('click', '.thum', function () {
        if (!$(this).next().is(':visible')) {
            $(this).next().slideDown();
        } else {
            $(this).next().slideUp();
        }
        $(this).parent().siblings().find('.info_box').slideUp();
    })
})(window, window.jQuery)