В общем, есть два блока:
#revo {
width: 30px;
height: 30px;
background-image: url("images/revotxt.png");
background-size: 30px 30px;
position: relative;
top: 370px;
left: 950px;
animation: revoMove 1.2s infinite linear;
}
#stone {
width: 40px;
height: 40px;
background-image: url("images/stone.png");
background-size: 40px 40px;
position: relative;
top: 60px;
left: 790px;
animation: stoneMove 1s infinite linear;
}
document.getElementById("gameRestart").addEventListener("click", function() {
stone.style.left = "750px";
revo.style.left = "900px";
gameOver.style.visibility = "hidden";
gamePause(false);
})
Я добавил обработчик события на другой блок, но по какой-то причине первые два не работают и те блоки не смещаются вправо, что не так? Заранее спасибо.
P.S.: дэмка на кодипэн
https://codepen.io/ch1ps/full/yLRYPEN