Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A while ago, I spent a bit of time writing a small script that would let me have two slideshows on the same page, both fetching images from the same folder. I had a PHP script load all the images, another to rotate them, and then echo their html code for them to show on the page. I then had a jQuery script fade the images from one to the other.

Problem: Current setup loads ALL IMAGES FIRST, then does the slideshow. This is highly inefficient and makes the page take forever to load.

Solution: Load one image, then the next, then fade to the next, then load one more, then fade to that one.

How would I go about implementing that solution?

repository of images: "img/polaroids"

code that loads all images (polaroidechoer2.php):

<?PHP
$dir_path = "polaroids/";
$count = count(glob($dir_path . "*"));

$count--;

$array = array("1");
for($i=$count; $i>-1; $i--)
{ $array[$i] = $i; }
shuffle($array);

for($k=$count; $k>-1; $k--)
{ $n = $array[$k]+1;
  if($n<10) { $n = "0" .$n; }
  echo "<img src='polaroid.php?file=" .$n. "&n=2'>"; }
?>

jQuery that handles the slideshow:

<script type='text/javascript'>
$('document').ready(function() {

    var currentImageIndex = 0;
    var nextImage = function() {
        var $imgs = $('#slideshow > img');
        currentImageIndex++;
        if (currentImageIndex > $imgs.length)
        {
            currentImageIndex = 1;
        }

       $('#slideshow > img:nth-child(' + currentImageIndex +')')
        .fadeIn(function() {
             $(this).delay(7000).fadeOut(nextImage);
         })
    };

    nextImage();
});
</script>

HTML:

<div id="slideshow" style="position: absolute; left: 22px; top: 17px; width: 238px; height: 238px;"><?PHP include("polaroid1echoer.php"); ?></div>
            </div></div>

All help is appreciated. Thanks, Pirate43

share|improve this question

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.