/
anton.buldygin
/
javascriptaio
Обзор
Документация
Войти
/
anton.buldygin
/
javascriptaio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
gamelet.js
19 строк
400 B
AntonBuldygin
first commit
14 фев 2024, 18:32
14 фев 2024, 18:32
028bdb6
Код
Авторство
О чём код?
const ball = document.getElementById("ball"); document.addEventListener("keydown", handleKeyPress); let position = 0; function handleKeyPress(e) { if (e.code === "ArrowLeft") { position = position - 10; } if (e.code === "ArrowRight") { position = position + 10; } if (position < 0) { position = 0; } refresh(); } function refresh() { ball.style.left = position + "px"; }