How to Create an Infinite Scrolling Web Gallery

How to Create an Infinite Scrolling Web Gallery

Tutorial Details
  • Difficulty: Beginner - Intermediate
  • Estimated Completion Time: 1 Hour

When working my way through a web gallery, I find it annoying when I must change pages; so in today’s tutorial, we will learn how to create an auto-generating, one-page, infinite scrolling gallery with PHP and AJAX. Let’s get started!


Step 1: Project Outline

We’ll begin with a normal gallery page that has a container for our images, and we’ll monitor the scroll position by calling a JavaScript function at a quick interval. Each time the scroll bar is near the bottom, we’ll make an AJAX request to an external PHP file, which returns a list of image names. Now, all we’ll need to do is add these images to our container, thus modifying the page height moving the scroll position higher.


Step 2: HTML Markup

We’ll work with a very basic setup: a header and the container for our images. The thumbnails will be grouped in sets of three rows, each will contain a link, referencing the full size image. After each group, we will add some text showing the total number of displayed images, and a link to the top of the page.

<body>
	<div id="header">Web Gallery | Infinite Scroll</div>
	<div id="container">	 
		<a href="img/Achievements.jpg"><img src="thumb/Achievements.jpg" /></a>    
		<a href="img/Bw.jpg"><img src="thumb/Bw.jpg" /></a>    
		<a href="img/Camera.jpg"><img src="thumb/Camera.jpg" /></a>
		<a href="img/Cat-Dog.jpg"><img src="thumb/Cat-Dog.jpg" /></a>    
		<a href="img/CREATIV.jpg"><img src="thumb/CREATIV.jpg" /></a>    
		<a href="img/creativ2.jpg"><img src="thumb/creativ2.jpg" /></a>
		<a href="img/Earth.jpg"><img src="thumb/Earth.jpg" /></a>   
		<a href="img/Endless.jpg"><img src="thumb/Endless.jpg" /></a>    
		<a href="img/EndlesSlights.jpg"><img src="thumb/EndlesSlights.jpg" /></a>    
		
		<p>9 Images Displayed | <a href="#header">top</a></p>
	    <hr />
	</div>
</body>


Step 3: CSS

The CSS is also quite basic. First, we define the page colors and positioning for the header and paragraphs.

body{
	background:#222;
	color:#666;
}
#header{
	font-family:Arial, Helvetica, sans-serif;
	font-size:24px;
	font-weight:bold;
	text-align:left;
	text-indent:35px;
	margin: 0 auto;
	width:800px;
	margin-bottom:10px;
}
hr{
	margin: 20px;
	border:none;
	border-top: 1px solid #111;
	border-bottom: 1px solid #333;
}
p{
	color:#444;
	text-align:left;
	font-size:10px;
	margin-left: 20px;
	margin-bottom: -10px;
}
a{
	color:#444;
}

Step 4

Then, for the container and images, I used a bit of CSS3 to add round corners and shadows. Don’t forget "-moz-box-shadow" and "-moz-border-radius" for Firefox and "-webkit-box-shadow" and "-webkit-border-radius" for Chrome and Safari.

#container{
	margin: 0 auto;
	width:800px;
	border:1px solid #333;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	font-family:Verdana, Geneva, sans-serif;
	text-align:center;
}
img{
	border:10px solid #444;
	-moz-border-radius: 5px;
	-webkit-border-radius: 10px;
	margin: 15px;
}
img:hover{
	border-color:#555;
	-moz-box-shadow: 0px 0px 15px #111;
	-webkit-box-shadow: 0px 0px 15px #111;
}

Step 5: PHP Script

This is going to be very short. We need to call the PHP script with the index of the next image we need as a parameter. First of all, we have to retrieve all the available image names from a directory and save them into an array. I organized my images in two folders: "thumb" and "img" which contain the thumbnails and actual images, respectively. Note that the thumbnails must have the exact same name as their corresponding full size images.

<?php

$dir = "thumb";
if(is_dir($dir)){
	if($dd = opendir($dir)){
		while (($f = readdir($dd)) !== false)
			if($f != "." && $f != "..")
				$files[] = $f;
	closedir($dd);
	} 

We define a variable for the directory we want to get the image names from, test if it exists, and if we can open it, read all the file names from it. When reading an entire folder, we will always get two extra elements we may not want: "." – this stands for the current directory, and ".." – this stands for the parent directory. To compensate, we have to test if the element read is different from these two, then we can safely add it to our array.

$files[] = $f;

As a note, when adding an element to an array and not specifying the position to be placed in, it will always push the element to the end of the array.


Step 6

Now we have to build our response text. We are going to send back to the JavaScript a single string containing all the necessary file names separated by a semi-colon.

	$n = $_GET["n"];
	$response = "";

We get the URL parameter for the index of the next image we need, and we initialize our response text.

	
	for($i = $n; $i<$n+9; $i++)
		$response = $response.$files[$i%count($files)].';';
	echo $response;
}
?>

As I said before, the images will be grouped in sets of three rows, each containing three images, so we only need nine images to return the file names for a group. We start at the index we got as parameter, $n, and go until $n+9. At each increment, we add our image name followed by ";" to the response text. Here is a little tricky part. We won’t have an infinite number of images; so in order to create the effect of an "infinite" gallery which never ends, each time the index of the next image is greater that the total number of images, we must start over from the beginning. This is done by applying the "modulo" or "%" function between the index and the total number of images.

	$i%count($files)

As a result, we get the remainder of the division between these two elements. For example, if the index "$i" is "50" and the number of images "count($files)" is "45" the result will be "5". As well, if "$i" is "50" and "count($files)" is "65", the result will be "50". Finally, we have to send back our response text.


Step 7

Here is the complete PHP script. Just place your completed code within a new .php file.

<?php

	$dir = "thumb";
	if(is_dir($dir)){
		if($dd = opendir($dir)){
			while (($f = readdir($dd)) !== false)
				if($f != "." && $f != "..")
					$files[] = $f;
			closedir($dd);
		} 
	

	$n = $_GET["n"];
	$response = "";
		for($i = $n; $i<$n+9; $i++){
			$response = $response.$files[$i%count($files)].';';
		}
		echo $response;
	}
?>

Step 8: JavaScript

As usual, first we define some variables we will need later on.

var contentHeight = 800;
var pageHeight = document.documentElement.clientHeight;
var scrollPosition;
var n = 10;
var xmlhttp;

In order to determine weather the scroll bar is near the bottom of the page, we need three variables:

  • "contentHeight" – the height of the initial gallery
  • "pageHeight" – the height of the visible page in the browser
  • "scrollPosition" – the position of the scroll bar measured from the top

Lastly, we need a variable for the next image index (which we are going to send to the PHP script), and a variable for the Ajax request object.


Step 9

We need to define a function that will add the images to our HTML container.

function putImages(){
	if (xmlhttp.readyState==4){
    	if(xmlhttp.responseText){

A request object goes through different states as the request is made, each of which has a numerical value associated. The one we are interested in is the final state, when the request is complete and the value is "4". We first test if the request is in this state, and then check to see if we received a response.


Step 10

If both conditions are fulfilled, we have to tokenize the response text. This means we have to separate the file names into an array. Remember that in the PHP script we returned a single string with the names separated by semi-colons. Here is an example: Achievements.jpg;Bw.jpg;Camera.jpg;Cat-Dog.jpg;CREATIV.jpg;creativ2.jpg;Earth.jpg;Endless.jpg;EndlesSlights.jpg;

var resp = xmlhttp.responseText.replace("\r\n", "");
var files = resp.split(";");

There is a bit of a problem we have to deal with first; the response text may have at the beginning a new line character which we do not want. This is easily fixed with the "replace" function, that takes two parameters: "\r\n" – the new line character, and "" – empty string that will replace all occurrences of the first parameter. Now all we have to do is to split the string by our delimiter ";".


Step 11

Next, we have to add the images to our container.

            var j = 0;
            for(i=0; i<files.length; i++){
                if(files[i] != ""){
                    document.getElementById("container").innerHTML += '<a href="img/'+files[i]+'"><img src="thumb/'+files[i]+'" /></a>';
                    j++;
                    
                    if(j == 3 || j == 6)
                        document.getElementById("container").innerHTML += '';
                    else if(j == 9){
                        document.getElementById("container").innerHTML += '<p>'+(n-1)+" Images Displayed | <a href='#header'>top</a></p><hr />";
                        j = 0;
                    }
                }
            }

For every element in our array, we check if it isn’t an empty string, and add the thumbnail with the link on it. We have to keep a counter "j" in order to separate the images in rows. After every third and sixth thumbnail added, we create a new line, and after nine thumbnails added we put the text showing the total number of displayed images and a link to the top of the page.


Step 12

Here is the complete function.

function putImages(){
	if (xmlhttp.readyState==4){
    	if(xmlhttp.responseText){
			var resp = xmlhttp.responseText.replace("\r\n", "");
			var files = resp.split(";");
            
            var j = 0;
            for(i=0; i<files.length; i++){
                if(files[i] != ""){
                    document.getElementById("container").innerHTML += '<a href="img/'+files[i]+'"><img src="thumb/'+files[i]+'" /></a>';
                    
                    j++;                    
                    if(j == 3 || j == 6)
                        document.getElementById("container").innerHTML += '';
                    else if(j == 9){
                        document.getElementById("container").innerHTML += '<p>'+(n-1)+" Images Displayed | <a href='#header'>top</a></p><hr />";
                        j = 0;
                    }
                }
            }
		}
	}
}

Step 13

Now we are going to define the function that will check if the scroll position is getting near the bottom, and makes the request to the server.

function scroll(){
	
	if(navigator.appName == "Microsoft Internet Explorer")
		scrollPosition = document.documentElement.scrollTop;
	else
		scrollPosition = window.pageYOffset;

First, we have to find the position of the scroll bar. Internet Explorer does this a bit differently, so we have to determine what browser the client is using, then just store the value in the variable we defined earlier.


Step 14

	if((contentHeight - pageHeight - scrollPosition) < 500){ 

Now we check to see if we are about to reach the end of our gallery – if the part of the page visible in the browser is below the bottom 500px of the entire page. This isn’t an exact value, you may use a different one if you find it suitable. If this condition is true, we can continue on and add new images.


Step 15: Creating the XMLHttpRequest Object

We are ready to make the XMLHttpRequest object and send it. Again, for Internet Explorer the definition is a bit different, so we must compensate for this as well.

	if(window.XMLHttpRequest)
			//Firefox, Opera, Safari
			xmlhttp = new XMLHttpRequest();
		else
			if(window.ActiveXObject)
            	//Internet Explorer
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			else
				alert ("Bummer! Your browser does not support XMLHTTP!");	

Step 16

Before sending the request, we have to specify the PHP script name on the server and insert the parameters we want to give it.

	var url="getImages.php?n="+n;

This is a simple text variable representing the URL of the page.


Step 17

It’s time to send the request.

		xmlhttp.open("GET",url,true);
		xmlhttp.send();

The URL is set by calling the "open" method. The second parameter is the important one, this being the script’s URL. After doing so, all we need is to send it. This will run the PHP script and put in "xmlhttp.responseText" the return value of it.


Step 18

The final step is to place the new content on the page by calling the function we defined earlier "putImages" and to prepare our variables for the next request.

		n += 9;
		contentHeight += 800;
		xmlhttp.onreadystatechange = putImages;				
	}
}

We have nine new images in the gallery, so we increment "n" with 9, and we need to change the page height; so increment "contentHeight" with 800.


Step 19

Here is the entire JavaScript we’ve used.

<script>
var contentHeight = 800;
var pageHeight = document.documentElement.clientHeight;
var scrollPosition;
var n = 10;
var xmlhttp;

function putImages(){
	
	if (xmlhttp.readyState==4)
	  {
		  if(xmlhttp.responseText){
			 var resp = xmlhttp.responseText.replace("\r\n", ""); 
			 var files = resp.split(";");
			  var j = 0;
			  for(i=0; i<files.length; i++){
				  if(files[i] != ""){
					 document.getElementById("container").innerHTML += '<a href="img/'+files[i]+'"><img src="thumb/'+files[i]+'" /></a>';
					 j++;
				  
					 if(j == 3 || j == 6)
						  document.getElementById("container").innerHTML += '';
					  else if(j == 9){
						  document.getElementById("container").innerHTML += '<p>'+(n-1)+" Images Displayed | <a href='#header'>top</a></p><hr />";
						  j = 0;
					  }
				  }
			  }
		  }
	  }
}
		
		
function scroll(){
	
	if(navigator.appName == "Microsoft Internet Explorer")
		scrollPosition = document.documentElement.scrollTop;
	else
		scrollPosition = window.pageYOffset;		
	
	if((contentHeight - pageHeight - scrollPosition) < 500){
				
		if(window.XMLHttpRequest)
			xmlhttp = new XMLHttpRequest();
		else
			if(window.ActiveXObject)
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			else
				alert ("Bummer! Your browser does not support XMLHTTP!");		  
		  
		var url="getImages.php?n="+n;
		
		xmlhttp.open("GET",url,true);
		xmlhttp.send();
		
		n += 9;
		xmlhttp.onreadystatechange=putImages;		
		contentHeight += 800;		
	}
}



Step 20

The final thing that we must do is run the JavaScript at a specified interval.

<body onload="setInterval('scroll();', 250);">

Just set up the "onload" property of the "body" tag, and set its value to the "setInterval" function. This will run the "scroll" function every quarter of a second. Again, you may change this time value, but I found that it’s optimal for what we need.


Finished!

We are done! I hope you found this tutorial to be of help and useful. Please leave a message in the comment section below, should you need further assistance or advice.

Note: Want to add some source code? Type <pre><code> before it and </code></pre> after it. Find out more
  • Pao

    Nice tip for beginners like me :D
    Thank you.

  • http://www.dhanashree.com Munnabhai- Dhanashree Inc

    Thanks
    your explanation is nice. and it can be helpful for developers.
    Thanks once again.
    Munnabhai- Dhanashree inc

  • Stan92

    Hi,
    Very nice.. Is it possible to use this script within a div and have the same effect ?

  • http://spotdex.com Davidmoreen

    I actually really like that this tutorial doesn’t use jQuery, nice change.

    <3 jquery though

  • http://www.deluxeblogtips.com/ Deluxe Blog Tips

    This effect is really cool. It’s a bit like autoload content on Facebook. I love the idea of getting the images to show with the i%count($n) statement.

    Thank you very much for sharing.

  • http://educ4all.com/vb التعليم للجميع

    nice lesson, to the bigginer like me

    thank you a lot

  • sampath

    Very useful for the beginners, Thank you very much.

  • http://www.smartcoderszone.com/ Amit

    Nice script ..

    Thanks for sharing ..

  • Joe

    Very cool tutorial, thanks for the knowledge. A couple things I ran across while implementing for my site…

    If the content that you’re dynamically adding isn’t of uniform height, you can use

    contentHeight = document.getElementById(‘container’).offsetHeight;

    to account for different heights.

    Also depending on the size of the data, it might be better to send only one http request and load all the data into a javascript array, then lazy load it when necessary. This way your server doesn’t get hit everytime a user scrolls, but just once per visit.

  • http://tekniverse.com RayCarolina

    I need something just like this but for the scrolling to start automatically as in this site http://www.fleetrates.com/ anyone have any ideas on how I can accomplish this?

  • HaikalPribadi

    damn, perfect.

  • Brandon

    Thank you for a great tutorial. Could you kindly explain how to stop the infinite loading once the script has loaded all of the images in the ‘img’ directory and display an ending message, such as “You’ve reached the end.” or some other similar ending message wrapped in a div? I love the idea of re-cycling the image library through, but prefer it not to in my implementation.

    An amazing alternative to LazyLoad, especially since development has stopped on it!

  • Steve J

    Can anyone explain why this doesn’t work on Safari on the iPad? Any workarounds?

    • Xtian

      On my iPad it works well …

  • http://www.e11world.com e11world

    I like this but I think there are better ways to implement a gallery. This is still a great tutorial but that is only my personal preference! Happy Coding everyone!

  • Xtian

    Great Tut!

    Is there a possibility to end the scrolling when all pictures are shown once?

    • andrea

      Did you ever find your answer? I want to know this too!

  • Yulia

    This is excellent! However, when i try to change how many images i want to show up in one section, i lose the first one in every single section except the very first hard-coded one. I change everything according to the new number (which is 12), put 13 as n variable in javascript, n+= 12, and +12 in php. For the life of me, i cannot figure out why it’s not displaying the [0] element of the files[] array….:( any suggestions? Thanks!

  • david

    oh on the tutorial, when you wrote..

    if(j == 3 || j == 6)
    document.getElementById(“container”).innerHTML += ”;

    i think you meant to include a = )

    but good tutorial! it was very helpful and thanks for explaining things step by step and following us through it. 5 stars

    • david

      oops i guess the break tag doesn’t show. but i was referring to a break = )

  • Kenny

    Hi,

    I tried using your infinite scrolling, but ran into some problems.
    1. How do I get the new images to appear on top every time?
    2. How do I get the images to appear only once?

    Thank you,
    Kenny

  • http://www.abayashopping.com/ Mohammed Sabeel

    hello,

    how do i do this for an opensource ecommerce website ?

  • Cuchara

    Great code, I’d add a simple input filtration function to make sure no malicious code is being inputted, which in this case can simply check if the input is numeric:

    function filter($data) {
    if(is_numeric($data)) {
    return $data;
    }
    else { header(“Location: index.html”); }
    }

    and then:

    $n = filter($_GET["n"]);

  • JohnS

    Hi,
    Thanks a lot for this tutorial, but unfortunately this is not exactly what I was expecting to find. I am looking for something similar with this image scroller: http://www.flashxml.net/image-scroller.html. Its disadvantage is that doesn’t work on iPod but if I will not find a better one I will keep it.

  • Ivan Ivković

    Thank you man! This’ll help with my project.

  • Rijad

    How do i make the Scroll just goes through my images once, appreciate any help.

    thax

  • http://drjohnstechtalk.com/ drjohn

    I made some improvements to this example (which was an excellent starting point).

    - got rid of infinite scroll
    - fetch12 images at a time
    - created a thumbnail generator program
    - got it working for Android browser (but not yet opera mini)
    - got rid of the hard-coded initial nine images

    So I call it progressive scroll. It’s documented here:

    http://drjohnstechtalk.com/blog/2012/06/how-to-create-a-progressive-scrolling-web-gallery/

  • http://www.admecindia.co.in tasleem

    nice tut

  • Sonny

    Hello Alexandru, this is a great tutorial. It has help me learn new things.
    But the only problem is, I want the images to add onto the original container, and not to make a new one itself. How can I achieve that? And also, when I do this there are big empty gaps. How can I take them away?

    Thanks buddy!
    Sonny

  • alienmoviez

    is there a way to load the images form the same folder? the thumbnails are named: name_t