D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
vlandham
Full window
Github gist
TextArc in D3 -old
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Textarc with D3</title> <meta name="description" content=""> <meta name="author" content="Jim Vallandingham"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script src="https://d3js.org/d3.v4.js"></script> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <div id="main" role="main"> <h1 id="title">Alice's Adventures In Wonderland</h1> <div id="word"></div> <div id="vis"></div> <div id="about"> <p>This is an attempt at a partial recreation of the amazing <a href="https://www.textarc.org/">TextArc</a> text visualization by W. Bradford Paley.</p> <p>This is meant as a tribute to the pioneering work, and as an experiment in how one might implement such interactive visualizations using current open web technologies.</p> <p>This version is implemented completely in the browser using <a href="https://d3js.org/">D3.js</a>. Alice in Wonderland text is derived from <a href="https://www.gutenberg.org/ebooks/11">Project Gutenberg</a>.</p> <p><a href="https://github.com/vlandham/textarc">Source Code</a></p> </div> </div> </div> <!--! end of #container --> <script src="stop_words.js"></script> <script src="vis.js"></script> </body> </html>
https://d3js.org/d3.v4.js