fara-web/js/fara.js
2021-08-01 01:02:15 +02:00

16 lines
339 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);
}
}