13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
setInterval( backgroundSwitching, 10000 );
|
|
|
|
let id = 2;
|
|
|
|
function backgroundSwitching () {
|
|
$( `#img${id}` ).addClass( 'visible' );
|
|
if ( id > 6 ) {
|
|
id = 2;
|
|
$( `.hidables` ).removeClass( 'visible' );
|
|
} else {
|
|
id++;
|
|
}
|
|
} |