fara-web/js/fara.js

16 lines
341 B
JavaScript

//use strict;
export {Farapp};
const Farapp = {
slider : /*** Fade in??*/ function (element, nextimage) {
//opacity = 1;
if(nextimage >= images.length) {
nextimage = 0;
}
element.style =
'background-image : url("' +images[nextimage++] + '");';
setTimeout(slider, 2000);
}
}