forked from mbostock's block: Linear Gradient
Created
January 27, 2017 12:24
-
-
Save domhorvath/7e40ce792170a6f61eaf814e2db693a8 to your computer and use it in GitHub Desktop.
Linear Gradient
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: gpl-3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<body> | |
<script src="//d3js.org/d3.v3.min.js"></script> | |
<script> | |
var width = 960, | |
height = 500; | |
var svg = d3.select("body").append("svg") | |
.attr("width", width) | |
.attr("height", height); | |
var gradient = svg.append("defs") | |
.append("linearGradient") | |
.attr("id", "gradient") | |
.attr("x1", "0%") | |
.attr("y1", "0%") | |
.attr("x2", "100%") | |
.attr("y2", "0%") | |
.attr("spreadMethod", "pad"); | |
gradient.append("stop") | |
.attr("offset", "0%") | |
.attr("stop-color", "#2f3140") | |
.attr("stop-opacity", 1); | |
gradient.append("stop") | |
.attr("offset", "100%") | |
.attr("stop-color", "#111417") | |
.attr("stop-opacity", 1); | |
svg.append("rect") | |
.attr("width", width) | |
.attr("height", height) | |
.style("fill", "url(#gradient)"); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment