使用无限滚动动态加载对齐的图库图像

时间:2016-09-18 12:37:53

标签: javascript php jquery

我正在使用带有内置无限滚动插件的jQuery Justified图库。

http://miromannino.github.io 

这可能是一个愚蠢的问题,但我如何使用PHP动态加载图像。

我知道如何使用下面的infinity滚动插件,但这个插件不能使用infinity滚动插件。

http://www.infinite-scroll.com/

代码

$('#gallery').justifiedGallery({rowHeight:120});


$(window).scroll(function() {
    if($(window).scrollTop() + $(window).height() == $(document).height()) {
        for (var i = 0; i < 5; i++) {
            $('#gallery').append('<a>' +
                '<img src="http://path/to/image" />' + 
                '</a>');
        }
        $('#gallery').justifiedGallery('norewind');
    }
});

2 个答案:

答案 0 :(得分:5)

    $('#gallery').justifiedGallery({rowHeight:120});


    $(window).scroll(function(){
        if($(window).scrollTop() + $(window).height() == $(document).height()){
          //jquery ajax for dynemic loading images
          $.ajax({
               type:'post',//method can bet get,post

               url:'yourPHPFile.php',//url of your php file

               data:{"key":value},//if you want to send some data for query

               success:function(result){ //function call when successful response from server

                  var PhpImageArray=JSON.parse(result);
                   $.each(PhpImageArray, function(index, item) {
                        $('#gallery').append('<a>' +
                             '<img src="http://path/to/image"'+item.image+' />' + 
                              '</a>');
                   });
               }
          });

        $('#gallery').justifiedGallery('norewind');
        }
  });

phpfile.php

    <?php
     //array contain image object as 
     $img_array=array();

    //your database query
     $query=mysqli_query($DB_connect,"select imageName from ImageTable");       
     while($img=mysqli_fetch_array($query))
     {
       //object name with "image"
        $obj["image"]=$img["imageName"];

        //push object to arraay
        array_push($img_array,$obj);
     }

     //convert array in to json format for javascript use
     echo json_encode($img_array);
    ?>

答案 1 :(得分:0)

您可以使用Javascript

计算图像数量
var offset = $('#gallery').children().length

然后你可以对给定的路径进行ajax调用(例如/ giveImages),它返回一个包含图像URL的JSON-Array

$.get('/giveImages?offset=' + offset, function(data) {
  // data = [ 
  //   'http://foo.com/image/3.jpg',                               
  //   'http://foo.com/image/4.jpg', 
  //   'http://foo.com/image/5.jpg'
  // ]

  // APPEND STUFF HERE AND justifyGallery 
})

完整示例:

$(window).scroll(function() {

  if($(window).scrollTop() + $(window).height() == $(document).height()) {

    var offset = $('#gallery').children().length

    $.get('/giveImages?offset=' + offset, function(data) {

      for(var i = 0; i < data.length; i++) {

        $('#gallery').append(
            '<a>' +
              '<img src="' + data[i] + '" />' + 
            '</a>'
        )

        $('#gallery').justifiedGallery('norewind')

      }

    })
  }
}