Skip to content

Instantly share code, notes, and snippets.

@easierbycode
Created March 2, 2026 01:28
Show Gist options
  • Select an option

  • Save easierbycode/7308c46f4e04efd32142062b7146522c to your computer and use it in GitHub Desktop.

Select an option

Save easierbycode/7308c46f4e04efd32142062b7146522c to your computer and use it in GitHub Desktop.
function fitCanvas() {
var c = document.querySelector("#canvas canvas");
if (!c) return;
var vw = window.innerWidth;
var vh = window.innerHeight;
var scale = Math.min(vw / 256, vh / 480);
c.style.width = Math.floor(256 * scale) + "px";
c.style.height = Math.floor(480 * scale) + "px";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment