Skip to content

Instantly share code, notes, and snippets.

@jaretthorton
jaretthorton / index.html
Last active June 18, 2019 05:00
People Who Have Held The Position of Preator per 25 Years
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font: 10px sans-serif;
}
.bar rect {
shape-rendering: crispEdges;
}
.bar text {
@jaretthorton
jaretthorton / 230px*120px preview.png
Created June 6, 2019 17:28
VULT2549-Simple with Children.html
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.d3-tip {
line-height: 1;
font-weight: bold;
padding: 12px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
@jaretthorton
jaretthorton / 960×500 preview.png
Last active May 29, 2019 21:54
Blocks D3 Visualizations
<meta charset="utf-8">
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
width: 960px;
height: 500px;
position: relative;
}
form {
position: absolute;
@jaretthorton
jaretthorton / gist:cd94cb3473522f7fe5f0d3243f4a3ef6
Last active May 29, 2019 21:10
Visualization - d3js - enter(), update() and exit()
<!doctype html>
<html>
<head>
<style>
svg {width:500px; height:500px}
button {float:left}
line {stroke:#ddd;shape-rendering: crispEdges;}
text {text-anchor:middle;}
circle {fill:orange;stroke:orange;fill-opacity:0.5;}
.axis line {fill:none;stroke:#ddd;shape-rendering: crispEdges;}