Skip to content

Instantly share code, notes, and snippets.

View HMilbradt's full-sized avatar
Lost at sea

Harrison Milbradt HMilbradt

Lost at sea
View GitHub Profile
@HMilbradt
HMilbradt / index.html
Last active March 26, 2023 19:04
A simple pen drawing example using HTML canvas, completely from scratch. Created as part of my blog https://harrisonmilbradt.com/articles/canvas-line-drawing-explorations
<html>
<body>
<div class="relative">
<canvas width="500" height="500" id="canvas"></canvas>
<button id="blue-button">Blue</button>
<button id="red-button">Red</button>
<input type="range" id="pen-width" min="1" max="10" value="5" />
@HMilbradt
HMilbradt / index.html
Last active March 26, 2023 19:05
Zooming and panning natively in HTML Canvas.
<html>
<body>
<canvas width="500" height="500" id="canvas"></canvas>
<script>
// Read here: https://harrisonmilbradt.com/articles/canvas-panning-and-zooming
const canvas = document.getElementById('canvas')
@HMilbradt
HMilbradt / formulate-mapper.js
Last active January 2, 2021 17:52
Maps Formulate
/*
Usage:
let person = {
name: "Harrison",
age: 200,
address: {
street: "12345 Street",
zip: "abcde"
},