0

我将同位素用于全宽网格系统。我已经让它按我的意愿工作,但在响应元素方面存在一些问题。我想对系统采用 4,3,2,1 方法,例如。桌面 4 个项目,平板电脑 3 个项目,暴民横向 2 个项目和暴民肖像 1 个项目。

无论我尝试什么,我都会在调整大小时得到奇怪的布局。我最接近它的工作是使用以下代码,但是在调整窗口大小时,有时元素会掉到新行上并导致网格之间出现巨大间隙。我希望网格是无缝的。

这是我的代码:

<script>

        var $container = $('#isotope')
        $container.imagesLoaded( function(){
            $('#isotope').isotope({
                    // options
                    animationEngine : 'best-available',
                    layoutmode: 'masonry',
                    filter: '.all-header, .project, .clients, .news, .blog'
            });
        });
        // initialize Isotope
        $container.isotope({
                // options...
                resizable: true, // disable normal resizing
                // set columnWidth to a percentage of container width
                masonry: { columnWidth: $container.width() / 25 }
        });
        // update columnWidth on window resize
        $(window).smartresize(function(){
                $container.isotope({
                // update columnWidth to a percentage of container width
            masonry: { columnWidth: $container.width() / 25 }
                });
        });

        var $optionSets = $('#filter_bar .option-set'),
          $optionLinks = $optionSets.find('a');

        $optionLinks.click(function(){
        var $this = $(this);
        // don't proceed if already selected
        if ( $this.hasClass('selected') ) {
          return false;
        }
        var $optionSet = $this.parents('.option-set');
        $optionSet.find('.selected').removeClass('selected');
        $this.addClass('selected');

        // make option object dynamically, i.e. { filter: '.my-filter-class' }
        var options = {},
            key = $optionSet.attr('data-option-key'),
            value = $this.attr('data-option-value');
        // parse 'false' as false boolean
        value = value === 'false' ? false : value;
        options[ key ] = value;
        if ( key === 'layoutMode' && typeof changeLayoutMode === 'function' ) {
          // changes in layout modes need extra logic
          changeLayoutMode( $this, options )
        } else {
          // otherwise, apply new options
          $container.isotope( options );
        }

        return false;
        });
        </script>
4

1 回答 1

0

我想我有一个解决方案,我已经在这里回答了https://stackoverflow.com/a/20270911/1010892

希望有帮助!

于 2013-11-28T16:32:43.383 回答