Skip to content

Instantly share code, notes, and snippets.

View jackHedaya's full-sized avatar
🦔
Happy as a Hedgehog

Jack Hedaya jackHedaya

🦔
Happy as a Hedgehog
View GitHub Profile
@Martin-Pitt
Martin-Pitt / pan-zoom-touch-and-trackpad.js
Last active December 22, 2023 02:16
Panning and Pinch-Zoom gesture handler for both touchscreens and trackpads; Works really well on a MacBook trackpad
// Target state
var tx = 0;
var ty = 0;
var scale = 1;
function visualiseTargetState() {
box.style.transform = `translate(${tx}px, ${ty}px) scale(${scale})`;
}