Skip to content

Instantly share code, notes, and snippets.

@sabha
sabha / line.html
Created April 1, 2018 04:18
Line Fractal
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="600" height="600"
style="border:1px solid #d3d3d3;">
Your browser does not support the canvas element.
</canvas>
<script>
@sabha
sabha / tris.html
Created April 1, 2018 01:05
Triangle Fractal
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="600" height="600"
style="border:1px solid #d3d3d3;">
Your browser does not support the canvas element.
</canvas>
<script>
@sabha
sabha / fractal.html
Last active March 29, 2018 15:57
Fractal
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="1000" height="800" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>
<script>
var canvas = document.getElementById("myCanvas");
@sabha
sabha / Chase.html
Created March 28, 2018 20:18
Chase Enemy
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="420" height="420" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>
<script>
var canvas = document.getElementById("myCanvas");
@sabha
sabha / folk.js
Created March 26, 2018 21:37
Folk wip
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="420" height="420" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>
<script>
var canvas = document.getElementById("myCanvas");
@sabha
sabha / mandala.html
Created March 23, 2018 17:27
Mandala
<!DOCTYPE html>
<html>
<body>
<script>
function bootStrapMandala(){
var name = "canvas"+Math.floor(Math.random() * 1000);
var canv = document.createElement('canvas');
@sabha
sabha / index.html
Last active March 25, 2018 07:10
Sin Cos Wave
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="600" height="600" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>
<script>
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
@sabha
sabha / circlePattern.html
Last active March 22, 2018 15:09
Circle Pattern
<!DOCTYPE html>
<html>
<body>
<script>
function getRandomColor() {
var letters = '0123456789ABCDEF';
var color = '#';
for (var i = 0; i < 6; i++) {
color += letters[Math.floor(Math.random() * 16)];
@sabha
sabha / index.html
Created March 12, 2018 21:04
Unit CIrcle
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(() => {
$("#grid").click(() => {
});
});
@sabha
sabha / index.html
Created February 21, 2018 22:08
Circle
<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="640" height="640" style="border:1px solid #d3d3d3; background: black;">
Your browser does not support the HTML5 canvas tag.</canvas>
<script>
var c = document.getElementById("myCanvas");