[ Launch: bouncing_circles ] 7002500 by jshumakerpruitt
[ Launch: click_paths ] 7002879 by jshumakerpruitt
[ Launch: simple_transition ] 7029694 by jshumakerpruitt
[ Launch: stacks ] 7091976 by jshumakerpruitt
[ Launch: move_to_front ] 7092146 by jshumakerpruitt
[ Launch: move_along ] 7092576 by jshumakerpruitt
[ Launch: mandelbrot ] 7095549 by jshumakerpruitt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<title>ShuPru.com D3-powered Mandelbrot Visualization</title> | |
</head> | |
<body> | |
<script type="text/javascript"> |
[ Launch: basic_json ] af9798cdd82d8f7fc4df by jshumakerpruitt[ Launch: test ] 4653053 by enjalot[ Launch: test ] 4652017 by enjalot[ Launch: test ] 4582399 by enjalot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function draw(data){ | |
d3.select("body") | |
.append("div").attr("class", "chart") | |
.selectAll("div.line") | |
.data(data.cash) | |
.enter() | |
.append("div") | |
.attr("class", "line"); | |
d3.selectAll("div.line") |
OlderNewer