desandro / masonry

:love_hotel: Cascading grid layout plugin
https://masonry.desandro.com
16.38k stars 2.11k forks source link

Hide items on small devices #1071

Closed AlessandroVecchi closed 5 years ago

AlessandroVecchi commented 5 years ago

I want to show only the first three items on small devices. I tried with a css selector but it doesn't work properly

@media (max-width: 767px) {
  .grid-item:nth-child(n+4) {
    display: none;
  }
}

is there another way?

AlessandroVecchi commented 5 years ago

Can i disable masonry at a specific screen size?

desandro commented 5 years ago

You can initialize Masonry conditionally with

if ( matchMedia("(min-width: 720px)").matches ) {
  $('.grid').masonry(...);
}
AlessandroVecchi commented 5 years ago

Thanks! Maybe it works.... But i have to count "grid-sizer" too (i dont't understand why)