Skip to content

Instantly share code, notes, and snippets.

View moharanascimento's full-sized avatar

Mohara Nascimento moharanascimento

View GitHub Profile
@KennyRedman
KennyRedman / canvasZoom.html
Created June 4, 2014 18:28
CanvasZoom - Mouse wheel scrolling
<canvas id="canvas" width="1000" height="800"></canvas>
<script type="text/javascript">
var canvas = document.getElementById("canvas");
var context = canvas.getContext("2d");
var scale = 1;
var originx = 0;
var originy = 0;
function draw(){
context.fillStyle = "white";