Skip to content

Commit

Permalink
Update uaac.html
Browse files Browse the repository at this point in the history
  • Loading branch information
M0chaCat authored Aug 4, 2024
1 parent ce3d01f commit 18181df
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions uaac.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h1 id="title"></h1>

let nextAn = 1
let indexN = 0
let wordlist = ['you', 'are', 'a', 'cutie :3']
let wordlist = ['u', 'r', 'a', 'cutie :3']
let popups = [window]

function getRandomCordinats(){
Expand All @@ -40,12 +40,12 @@ <h1 id="title"></h1>
setInterval(()=>{
title.textContent = wordlist[indexN]
if(nextAn==1){
title.style.color = 'black'
body.style.backgroundColor = 'white'
title.style.color = 'white'
body.style.backgroundColor = 'black'
nextAn = 2
}else{
title.style.color = 'black'
body.style.backgroundColor = 'white'
title.style.color = 'white'
body.style.backgroundColor = 'black'
nextAn = 1
}
if (indexN == 3) {
Expand Down

0 comments on commit 18181df

Please sign in to comment.