D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
darthmall
Full window
Github gist
AppJS data explorer.
<!doctype html> <html> <head> <title>Biomass Density</title> <link rel="stylesheet" href="style.css"> </head> <body> <form class="controls"> <label for="cutoff">Cutoff density</label> <div class="slider"> <input id="cutoff-slider" name="cutoff" type="range" min="0" max="10" value="3" step="0.01" /> <input id="cutoff-value" name="cutoff" type="text" value="3.0" size="4" maxlength="4" /> </div> <input id="unoccupied" name="unoccupied" type="checkbox" /> <label for="unoccupied">Include unoccuped pasture</label> <button id="export">Export</button> </form> <script src="d3.v3.min.js"></script> <script src="main.js"></script> </body> </html>