11 lines
228 B
JavaScript
11 lines
228 B
JavaScript
window.addEventListener('load', () => {
|
|
showAllImg1();
|
|
})
|
|
function showAllImg1(){
|
|
setTimeout(showAllImg,1000);
|
|
}
|
|
|
|
|
|
function showAllImg(){
|
|
document.querySelector('ul.sigFreeClassic').style.setProperty('display','flex');
|
|
} |