Curlz SD font by Steph Davidson.
Canvas code is crappy ripoff of FizzyText (seen here, source here, my attempted explanation here).
This one ditches the noise flow field. Picks up color of underlying canvas and if it's on a non-white pixel, draws a random spiral.
xxxxxxxxxx
<html>
<head>
<style>
@font-face {
font-family: 'Curlz SD';
src: url('CurlzSD.eot');
src: url('CurlzSD.eot?#iefix') format('embedded-opentype'),
url('CurlzSD.woff') format('woff'),
url('CurlzSD.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
canvas {
position: absolute;
top: 0;
left: 0;
}
h1 {
font-family: 'Curlz SD';
position: absolute;
bottom: 0;
right: 0;
font-size: 10px;
}
</style>
<title>StreakyText</title>
<script src='d3.min.js'></script>
<script src='main.js'></script>
<script>
window.onload = function() {
// delayed to allow webfont to load :/
setTimeout(function() {
var streakyText = new StreakyText('BUSINESS!');
}, 100);
};
</script>
</head>
<body>
<h1>Font by Steph</h1>
<div id='streakytext'></div>
</body>
</html>