Skip to content

Instantly share code, notes, and snippets.

@xguox
Created February 24, 2013 13:06
Show Gist options
  • Save xguox/5023768 to your computer and use it in GitHub Desktop.
Save xguox/5023768 to your computer and use it in GitHub Desktop.
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(41deg, #f06, blue);
min-height: 100%;
<canvas id="can" width="200" height="200"></canvas>
function test() {
var can = document.getElementById("can");
var context = can.getContext("2d");
context.beginPath();
context.moveTo(70,140);
context.lineTo(140,70);
context.stroke();
}
window.addEventListener("load", test, true);
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment