How to create a responsive (varying column count) Angular-Material card grid

前端 未结 4 483
悲&欢浪女
悲&欢浪女 2020-12-31 03:13

I\'m trying to create a grid of Angular-Material cards that behaves somewhat like a Bootstrap grid. Ideally, cards will be full-width for small screen widths and jump to two

4条回答
  •  旧时难觅i
    2020-12-31 03:34

    You can use the material Grid-List, it allows for custom col-spans and animates the changes when the width changes.

    I adapted the sample from the site and added md-card in the contents. Make sure to add layout-fill on the md-card. You can easily adapt the sample for your column count.

    http://codepen.io/anon/pen/QypjWY

    I also adapted your 5 card sample. You need to know the height of the cards in order to use the Grid-List, but you can easily achieve the 100% height on small screens. You can use ratios or fixed CSS heights for the rows and then it is your cards job to display the content in a flexible way.

    
        
            
    

    http://jsfiddle.net/2afaok1n/34/

    Edit:

    If you are instead looking for some kind of staggered grid, then you have to add a library: angular-deckgrid, it just provides the grid layout, everything in the content is angular-material. Unlike angular-masonry this library doesn't have any dependencies. If you are not worried about adding jQuery and the like then you can also use angular-masonry.

    The important part for the deck layout is the CSS configuration. With this you configure the number of columns and their width. I have used a media query for the angular-material sm breakpoint to switch to single column layout.

    .deckgrid::before {
      content: '4 .column.column-1-4';
      font-size: 0;
      visibility: hidden;
    }
    
    .deckgrid .column {
      float: left;
    }
    
    .deckgrid .column-1-4 {
      width: 25%;
    }
    
    .deckgrid .column-1-1 {
      width: 100%;
    }
    
    @media screen and (max-width: 960px) {
      .deckgrid::before {
        content: '1 .column.column-1-1';
      }
    }
    

    http://jsfiddle.net/2afaok1n/39/

    Edit 2:

    There is also a masonry version which doesn't require jQuery and a simple directive to use it: angular-masonry-directive. Here is an example, it works similar to the other one.

    http://jsfiddle.net/xjnp97ye/1/

提交回复
热议问题