Skip to content

Instantly share code, notes, and snippets.

@kendru
Created October 12, 2012 06:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kendru/3877556 to your computer and use it in GitHub Desktop.
Save kendru/3877556 to your computer and use it in GitHub Desktop.
Simple jQuery image slider
// Image slider, complete with lazy loading.
(function ($) {
$.fn.sliderize = function( options ) {
var settings = $.extend({
srcAttrib: "src", // data attribute containing image source
delayTime: 6000,
transitionTime: 1000,
randomize: false, // "randomize" the slides
width: 700,
height: 276
}, options);
// If we don't do this, then the plugin can throw the browser into an infinite loop :-o
if (this.length === 0 || this.find('img').length === 0) {
return this;
};
var images = new Array(),
statePlaying = true,
currentIndex = 0,
enqueue = function($image) {
images.push($image);
},
nextImg = function() {
// Check to see if random setting is on
if (settings.randomize) {
// Selects a "random" index... ensures that the same slide does not display 2x in a row
while(true) {
candidateIndex = Math.floor(Math.random() * images.length);
if (candidateIndex !== currentIndex) {
currentIndex = candidateIndex;
break;
}
}
} else if (currentIndex === images.length - 1) {
// If we're at the end, then get the first image again
currentIndex = 0;
} else {
// Otherwise, increment the index
currentIndex++;
}
// Implement a crude form of preloading, loading 1 image in advance
if (images[currentIndex].data('loaded') !== true) {
theSrc = images[currentIndex].data(settings.srcAttrib);
images[currentIndex].attr('src', theSrc)
.data('loaded', true)
.css({
position: "absolute",
top: 0,
left: 0,
margin: 0
});
}
return images[currentIndex];
},
playShow = function($img) {
if (statePlaying === false) return;
$img.fadeIn(settings.transitionTime / 2, function() {
$nextImg = nextImg();
setTimeout(function() {
$img.fadeOut(settings.transitionTime / 2, function() {
playShow($nextImg);
});
}, settings.delayTime - settings.transitionTime);
});
};
// LOOP THROUGH IMAGES AND ADD THEM TO THE QUEUE
this.find('img').each(function() {
enqueue($(this));
$(this).hide();
});
// Ensure that the container element is position relatively
this.css({
width: settings.width,
height: settings.height,
position: 'relative'
}).addClass('loading');
currentIndex = -1;
playShow(nextImg());
// Maintain chainability
return this;
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment