This file contains 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
<body> | |
<div id = 'sg'></div> | |
<script src = "https://d3js.org/d3.v4.js"></script> | |
<script> | |
var img_width = 400, | |
img_height = 400; | |
//create original canvas that will be iterated on | |
function init(){ |
This file contains 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
<body> | |
<div style = 'position: absolute; top:0px; left:-500px'><canvas id = 'myCanvas' width = '500' height = '500' ></canvas></div> | |
<div style = 'position: absolute; top:70px; left:10px'><canvas id = 'otherCanvas' width = '500' height = '500'></canvas></div> | |
<form name = 'createRule' style = 'position: absolute; top:60px; left:520px'> | |
<br> | |
<br> | |
<h3>Create Fractal Rules</h3> | |
<label id = 'xslabel'>X-Scale: 0.5</label> | |
<input id = 'xscale' type = 'range' min = '-1' max = '1' step = '.05' value = '.5' onchange="document.getElementById('xslabel').innerHTML = 'X-Scale: ' + this.value;"/> | |
<br> |
This file contains 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
<head> | |
<link rel='stylesheet' href='../styles.css'> | |
<style> | |
div.tooltip{ | |
position: absolute; | |
text-align: left; | |
width: 250px; | |
height: 90px; | |
padding: 5px; | |
font-size: 14px; |
This file contains 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
<head> | |
<style> | |
#sections > div{ | |
opacity: .3; | |
} | |
#sections div.graph-scroll-active{ | |
opacity: 1; | |
} | |
This file contains 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
<head></head> | |
<body> | |
<body id = 'test'></body> | |
<script src = 'https://d3js.org/d3.v4.js'></script> | |
<script> | |
var height = 500, | |
width = 500, | |
symbol_size = 200, | |
animationDuration = 2000; | |
This file contains 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
<head> | |
<style> | |
div#tooltip{ | |
position: absolute; | |
text-align: left; | |
width: 250px; | |
height: 90px; | |
padding: 5px; | |
font-size: 14px; | |
background: white; |
This file contains 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> | |
<meta charset="utf-8"> | |
<body> | |
<style> | |
path { | |
fill: none; | |
stroke: #000; | |
stroke-width: 3px; | |
} |
This file contains 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
<head> | |
<style> | |
div.tooltip{ | |
position: absolute; | |
text-align: left; | |
width: 360px; | |
height: 130px; | |
padding: 5px; | |
font-size: 14px; | |
background: lightsteelblue; |
This file contains 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
<head></head> | |
<body></body> | |
<script src='https://rawgit.com/gka/d3-jetpack/master/build/d3v4%2Bjetpack.js'></script> | |
<script src="https://unpkg.com/[email protected]"></script> | |
<script> | |
var symbol_size = 300, | |
width = 1000, | |
height = 600, | |
duration = 3000; | |
This file contains 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
<head></head> | |
<body></body> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<script> | |
var data = [ | |
{ | |
"name": "Sample 1", | |
"embed": 10, | |
"interactive": 10, | |
"rapidDev": 7, |
OlderNewer