Masonry JS Overlapping Items

后端 未结 7 1427
庸人自扰
庸人自扰 2021-01-30 14:37

I have a very strange problem in here: [Referral Link Removed]. The first row product items overlapped with the items in the second row.

The masonry it

7条回答
  •  走了就别回头了
    2021-01-30 15:23

    You need to initiate Masonry after all images are loaded. If you are using jQuery try:

    var $container = $('#container');
    // initialize Masonry after all images have loaded  
    $container.imagesLoaded( function() {
      $container.masonry();
    });
    

    for other options see Masonry docs - http://masonry.desandro.com/layout.html#imagesloaded

提交回复
热议问题