mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-04-24 23:47:19 -05:00
28 lines
413 B
JavaScript
28 lines
413 B
JavaScript
/* eslint-env browser */
|
|
|
|
/*
|
|
|
|
index.js -
|
|
the main javascript file
|
|
|
|
*/
|
|
|
|
// set some variables
|
|
const bg = document.getElementById('hp-bg');
|
|
let index = 0;
|
|
const imageList = [ '/assets/images/bg1.gif', '/assets/images/bg2.gif' ];
|
|
|
|
// set the first image
|
|
bg.src = imageList[index];
|
|
index++;
|
|
|
|
setInterval(() => {
|
|
|
|
if (index === imageList.length) {
|
|
index = 0;
|
|
}
|
|
|
|
bg.src = imageList[index];
|
|
|
|
index++;
|
|
}, 5000); |