block by enjalot 6cf24e4541a0947404d3

SVG text glow

Full Screen

Built with blockbuilder.org

index.html

<!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>