Код IT
← Каталог

HiDPI canvas и ввод без смешения с update

devicePixelRatio, координаты мыши относительно canvas, объект keys для update.

html graphicscanvasinputencyclopedia embed URL статья в энциклопедии
HTML index.html
<!DOCTYPE html>
<html lang="ru">
<head>
  <meta charset="UTF-8" />
  <title>HiDPI + ввод</title>
  <style>
    body { font-family: system-ui; margin: 1rem; background: #0f172a; color: #e2e8f0; }
    canvas { display: block; margin-top: 0.5rem; border-radius: 8px; cursor: crosshair; }
  </style>
</head>
<body>
  <p>Кликните по полю — круг следует за курсором. Стрелки двигают камеру.</p>
  <canvas id="view"></canvas>
  <script src="main.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="ru">
<head>
  <meta charset="UTF-8" />
  <title>HiDPI + ввод</title>
  <style>
    body { font-family: system-ui; margin: 1rem; background: #0f172a; color: #e2e8f0; }
    canvas { display: block; margin-top: 0.5rem; border-radius: 8px; cursor: crosshair; }
  </style>
</head>
<body>
  <p>Кликните по полю — круг следует за курсором. Стрелки двигают камеру.</p>
  <canvas id="view"></canvas>
  <script src="main.js"></script>
</body>
</html>