I have used Infinite Scroll with Masonry, and used below query:
$args = array(
'post_type'=>'post',
'post_status'=>'publish',
'author' => 1
);
$query = new WP_Query($args);
if($query->have_posts()) :
while ($query->have_posts()) : $query->the_post();
//DIV COMES HERE
endwhile;
endif;
Issue, its that same post are repeating again and again in Infinite Scroll.
Means I have Post 01, Post 02, Post 03, Post 04 on page load.. after scrolling down Post 01, Post 02, Post 03, Post 04, Post 05, Post 06, Post 07 and again Post 01, Post 02, Post 03, Post 04.. is repeating..
check the below link for adding infinite scroll to wordpress
http://wptheming.com/2012/03/infinite-scroll-to-wordpress-theme/