progress on website

This commit is contained in:
2023-05-19 18:30:28 +02:00
parent d856df8e1b
commit 9207db9a59
14 changed files with 245 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
setInterval( backgroundSwitching, 10000 );
let id = 2;
function backgroundSwitching () {
$( `#img${id}` ).addClass( 'visible' );
if ( id > 6 ) {
id = 2;
$( `.hidables` ).removeClass( 'visible' );
} else {
id++;
}
}