Skip to content

Instantly share code, notes, and snippets.

@andredelgado
Created May 26, 2014 13:45
Show Gist options
  • Save andredelgado/9592b4833e75407d932b to your computer and use it in GitHub Desktop.
Save andredelgado/9592b4833e75407d932b to your computer and use it in GitHub Desktop.
$(function() {
var newBg = ['wp-content/themes/movein3Theme/img/slider1.jpg', 'wp-content/themes/movein3Theme/img/slider2.jpg', 'wp-content/themes/movein3Theme/img/slider3.jpg'];
var i = -1;
var rotateBg = setInterval(function(){
if(i==3)
i = 1;
else
i++;
$('#slider').css({backgroundImage : 'url(' + newBg[i] + ')'});
}, 5000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment