let body = document.querySelector('body', 'body.style.backgroundColor')
let button = document.querySelector('#b1', '#b1.value')
let field1 = document.querySelector('#i1', '#i1::placeholder')
let field2 = document.querySelector('#i2', '#i2::placeholder')
body.onclick = function(){
body.style.backgroundColor = 'black'
wait(2)
return(body.style.backgroundColor = 'white')
}
field1.onclick = function(){
field1.placeholder = 'ВВОДИ БЫСТРО ЛОГИН!'
wait(2)
return(field1.placeholder = 'Логин')
}
field2.onclick = function(){
field2.placeholder = 'ВВОДИ БЫСТРО ПАРОЛЬ!'
wait(2)
return(field1.placeholder = 'Пароль')
}
button.onclick = function(){
button.value = 'НАЖИМАЙ!'
wait(2)
return(button.value = 'Войти')
}
Как вернуть предыдущие значения стилей через две секунды?