D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
tophtucker
Full window
Github gist
Litera ex litera IV
Roll over the text.
Owes a huge debt to George Michael Brower’s
FizzyText
.
<!doctype html> <html> <head> <style> html, body { width: 100%; height: 100%; cursor: crosshair; } body { font-size: 2em; } p { margin: 1em; padding: 1em; } </style> <title>Letter flow</title> <script src='d3.min.js'></script> <script src='d3-jetpack.js'></script> <script src='improvedNoise.js'></script> </head> <body> <p>Tamina has the impression that a single outsider’s glance can destroy the entire worth of her intimate notebooks, and Goethe is convinced that a single glance of a single human being which fails to fall on lines written by Goethe calls into question Goethe’s very existence. The difference between Tamina and Goethe is the difference between human being and writer.</p> <script src='main.js'></script> </body> </html>