<!DOCTYPE html>
<meta charset="utf-8">

<body>
  <div class="container noselect">
    <h2>SERVICES</h2>
  <h1 onselectstart="return false" class="noselect">We create compelling physical and digital experiences driven by long-term strategy and goals.</h1>
  </div>
<svg width="1800" height="1000"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
body 
{
  margin:auto;
}

h1 {
    font-family: 'Sofia Pro', sans-serif;
    z-index: 2000 !important;
    font-size: 2.2rem;
    line-height: 3.4rem;
  font-weight: 400;
  }

h2 {
    font-family: 'Sofia Pro', sans-serif;
    z-index: 2000 !important;
    font-size: 1.2rem;
    line-height: 3.4rem;
  color: #D1D2D3;
  font-weight: 100;
  letter-spacing: 5px;
  }
  
  .noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
     -khtml-user-select: none; /* Konqueror */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; 
    pointer-events: none;
    cursor: default;/* Non-prefixed version, currently
                                  not supported by any browser */
}
  
  .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2000 !important;
}
  
.links {
  stroke: none;
  stroke-opacity: 0.2;
  z-index: 1000 !important;
}

.polygons {
  fill: none;
  stroke: none;
  z-index: 1000 !important;
  -webkit-transition: all 500ms cubic-bezier(0.415, 0.165, 0.860, 0.645); 
   -moz-transition: all 500ms cubic-bezier(0.415, 0.165, 0.860, 0.645); 
     -o-transition: all 500ms cubic-bezier(0.415, 0.165, 0.860, 0.645); 
        transition: all 500ms cubic-bezier(0.415, 0.165, 0.860, 0.645); /* custom */
}

.polygons:hover {
  fill: none;
  stroke: none;
  z-index: 1000 !important;
  margin-top: 20px;
  -webkit-transition: all 500ms cubic-bezier(0.415, 0.165, 0.860, 0.645); 
   -moz-transition: all 500ms cubic-bezier(0.415, 0.165, 0.860, 0.645); 
     -o-transition: all 500ms cubic-bezier(0.415, 0.165, 0.860, 0.645); 
        transition: all 500ms cubic-bezier(0.415, 0.165, 0.860, 0.645); /* custom */
}


.polygons :first-child {
  fill: #00FF6D;
  z-index: 1000 !important;
}

.sites {
  fill: #EDD5CE;
  stroke: none;
  z-index: 1000 !important;
}


.sites :first-child {
  fill: none;
  stroke: none;
  z-index: 1000 !important;
}

var svg = d3.select("svg").on("touchmove mousemove", moved),
    width = +svg.attr("width"),
    height = +svg.attr("height");

var sites = d3.range(50)
    .map(function(d) { return [Math.random() * width, Math.random() * height]; });

var voronoi = d3.voronoi()
    .extent([[-1, -1], [width + 1, height + 1]]);

var polygon = svg.append("g")
    .attr("class", "polygons")
  .selectAll("path")
  .data(voronoi.polygons(sites))
  .enter().append("path")
    .call(redrawPolygon);

var link = svg.append("g")
    .attr("class", "links")
  .selectAll("line")
  .data(voronoi.links(sites))
  .enter().append("line")
    .call(redrawLink);

var site = svg.append("g")
    .attr("class", "sites")
  .selectAll("circle")
  .data(sites)
  .enter().append("circle")
    .attr("r", 2.5)
    .call(redrawSite);

function moved() {
  sites[0] = d3.mouse(this);
  redraw();
}

function redraw() {
  var diagram = voronoi(sites);
  polygon = polygon.data(diagram.polygons()).call(redrawPolygon);
  link = link.data(diagram.links()), link.exit().remove();
  link = link.enter().append("line").merge(link).call(redrawLink);
  site = site.data(sites).call(redrawSite);
}

function redrawPolygon(polygon) {
  polygon
      .attr("d", function(d) { return d ? "M" + d.join("L") + "Z" : null; });
}

function redrawLink(link) {
  link
      .attr("x1", function(d) { return d.source[0]; })
      .attr("y1", function(d) { return d.source[1]; })
      .attr("x2", function(d) { return d.target[0]; })
      .attr("y2", function(d) { return d.target[1]; });
}

function redrawSite(site) {
  site
      .attr("cx", function(d) { return d[0]; })
      .attr("cy", function(d) { return d[1]; });
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.