Skip to content

Instantly share code, notes, and snippets.

@enjalot
Last active February 20, 2016 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enjalot/6cf24e4541a0947404d3 to your computer and use it in GitHub Desktop.
Save enjalot/6cf24e4541a0947404d3 to your computer and use it in GitHub Desktop.
SVG text glow
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
svg { width:100%; height: 100% }
</style>
</head>
<body>
<script>
// Feel free to change or delete any of the code you see!
var svg = d3.select("body").append("svg")
svg.append("rect")
.attr({x: 0, y: 0, width: 960, height: 500})
.style({ fill: "#090e3d"})
svg.append("text").text("Hello World")
.attr({
x: 200, y: 281,
"font-size": 100,
"font-family": "Helvetica",
// THE MAGIC
"paint-order":"stroke",
stroke: "#cfe0e7",
"stroke-width": 8,
"stroke-opacity": 0.6,
"stroke-linecap": "butt",
"stroke-linejoin": "miter"
})
console.log("you are now rocking with d3", d3);
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment