D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
ZijunXu
Full window
Github gist
create the image
Built with
blockbuilder.org
<!DOCTYPE html> <head> <meta charset="utf-8"> <script src="https://d3js.org/d3.v4.min.js"></script> <style> body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } </style> </head> <body> <script> var svg = d3.select("body").append("svg") .attr("width", 960) .attr("height", 500) svg.append("rect") .attr("x", 140) .attr("y", 450) .attr("height", 3) .attr("width", 600) .attr("fill", "#000000") svg.append("rect") .attr("x", 140) .attr("y", 30) .attr("height", 420) .attr("width", 3) .attr("fill", "#000000") svg.append("rect") .attr("x", 240) .attr("y", 50) .attr("height", 400) .attr("width", 70) .attr("fill", "#3996CE") svg.append("rect") .attr("x", 400) .attr("y", 150) .attr("height", 300) .attr("width", 70) .attr("fill", "#3996CE") svg.append("rect") .attr("x", 560) .attr("y", 250) .attr("height", 200) .attr("width", 70) .attr("fill", "#3996CE") </script> </body>
https://d3js.org/d3.v4.min.js