Estou tentando recriar o jogo do Mario com javascript, mas estou tendo um problema com o css, não estou conseguindo fazer animação do cano funciononar.
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Jogo Mario</title>
</head>
<body>
<div class="game-board">
<img src="img/pipe.png" alt="cano">
</div>
</body>
</html>
//css//
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.game-board{
width: 100%;
height: 400px;
border-bottom: 50px solid green;
margin: 0 auto;
position: relative;
overflow: hidden;
background: linear-gradient(#63c4eb, #E0F6FF)
}
.cano{
position: absolute;
bottom: 0;
width: 60px;
animation: pipe-animations 1.5s infinite linear;
}
@keyframes pipe-animations {
from{
right: -80px;
}
to{
right: 100%;
}
}