投资组合项目重新排列

时间:2012-11-17 09:26:40

标签: jquery css

我想在第一行移动具有活动类别的投资组合项目。 此时,非活动类别只是隐藏。

var Portfolio = {
sort: function(items) {
    items.show();
    $('#portfolio-content').find('div.portfolio-item').not(items).slideUp(500);
},
showAll: function(items) {
    items.fadeIn(500);
},
doSort: function() {
    $('a', '#portfolio-sort').on('click', function() {

        var $a = $(this);
        if (!$a.is('#all')) {

            var items = $('div[data-cat=' + $a.data('cat') + ']', '#portfolio-content');

            Portfolio.sort(items);

        } else {

            Portfolio.showAll($('div.portfolio-item', '#portfolio-content'));


        }

    });
}
};

Portfolio.doSort();​

我希望他们在具有活动类别的项目之后移动。 您可以在此处查看示例http://codecanyon.net/item/the-wall-media-gallery-jquery-powered/full_screen_preview/223915

0 个答案:

没有答案