Created
August 15, 2016 17:36
-
-
Save kovtunos/f48c312e4149d629363c37c9613d0a34 to your computer and use it in GitHub Desktop.
Simple slideshow #jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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