Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im using the Masonry plugin and am trying to get the Infinite scroll version to append results from the database. I've tried using some of the logic from this demo

http://www.1stwebdesigner.com/tutorials/infinite-scrolling-tutorial/

but it doesnt work well with Masonry, Does anyone have an idea how to achieve this? Below is my stable most current version of my code.

HTML & PHP:

<div id="feed-container" class="transitions-enabled infinite-scroll clearfix">

<? 

$sql = mysql_query("SELECT * FROM stories ORDER BY pid DESC limit 15"); 

    while($row = mysql_fetch_array($sql))
    {
        echo "<div class='box col".$row['columnsize']."'><p>";
        if ($row['photo_url'] != NULL) {
            echo "<img src='".$row['photo_url']."' /><br>";
        }
        else {
            echo '';
        }

        echo "</p></div>";
    }

?>

</div> <!-- #feed-container -->

<nav id="page-nav">
  <a href="masonry/pages/2.html"></a>
</nav>



</section> <!-- #content -->

Javascript

<script src="masonry/js/jquery-1.7.1.min.js"></script>
<script src="masonry/jquery.masonry.min.js"></script>
<script src="masonry/js/jquery.infinitescroll.min.js"></script>
<script src="masonry/js/box-maker.js"></script>
<script>
  $(function(){

    var $container = $('#feed-container');

    $container.imagesLoaded(function(){
      $container.masonry({
        itemSelector: '.box',
        columnWidth: 100
      });
    });

    $container.infinitescroll({
      navSelector  : '#page-nav',    // selector for the paged navigation 
      nextSelector : '#page-nav a',  // selector for the NEXT link (to page 2)
      itemSelector : '.box',     // selector for all items you'll retrieve
      loading: {
          finishedMsg: 'No more pages to load.',
          img: 'http://i.imgur.com/6RMhx.gif'
        }
      },
      // trigger Masonry as a callback
      function( newElements ) {
        // hide new items while they are loading
        var $newElems = $( newElements ).css({ opacity: 0 });
        // ensure that images load before adding to masonry layout
        $newElems.imagesLoaded(function(){
          // show elems now they're ready
          $newElems.animate({ opacity: 1 });
          $container.masonry( 'appended', $newElems, true );
        });
      }
    );

  });
</script>
share|improve this question
Found this app as a solution with pagination logic in get_stream.php codecanyon.net/item/… – Hector Apr 8 at 21:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.