ОПЯТЬ не работает код в хтмл. Я знаю, что я уже всех достал со своим canvas, но всё же. что я пропустил? что переписывать?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<tile>Анимация с canvas</title>
</head>
<body>
<canvas id="canvas" width="200" height="200"></canvas>
<script>
var canvas = document.getElementByld("canvas")
var ctx = canvas.getContext("2d")
var position = 0;
setInterval(function () {
ctx.clearRect(0, 0, 200, 200);
ctx.fillRect(position, 0, 20, 20);
position++;
if (position > 200) {
position = 0;
}
}, 30};
</script>
</body>
</html>