Skip to content

Instantly share code, notes, and snippets.

@kovtunos
Created August 15, 2016 17:36
Show Gist options
  • Save kovtunos/f48c312e4149d629363c37c9613d0a34 to your computer and use it in GitHub Desktop.
Save kovtunos/f48c312e4149d629363c37c9613d0a34 to your computer and use it in GitHub Desktop.
Simple slideshow #jquery
$(window).load(function() {
// Simple slideshow
var i = 0;
var images = [
'../img/slideshow-2.jpg',
'../img/slideshow-3.jpg',
'../img/slideshow-4.jpg',
'../img/slideshow-5.jpg',
'../img/slideshow-6.jpg',
'../img/slideshow-7.jpg',
];
var image = $('#slide');
image.css('background-image', 'url(../img/slideshow-1.jpg)');
setInterval(function() {
image.fadeOut(1000, function() {
image.css('background-image', 'url(' + images[i++] + ')');
image.fadeIn(1000);
});
if (i == images.length)
i = 0;
}, 10000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment