[ Launch Inlet ]
Gist #4391558 [ Launch Inlet ]
Gist #4391532 [ Launch Inlet ]
Gist #4391525 [ Launch Inlet ]
Gist #4391515 [ Launch Inlet ]
Gist #4391498 [ Launch Inlet ]
Gist #3200444
-
-
Save roundrobin/4391622 to your computer and use it in GitHub Desktop.
Another Inlet
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
{"description":"Another Inlet","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"tab":"edit","display_percent":0.4849745414998271,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"hidepanel":false} |
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
var svg = d3.select("svg"); | |
var types = ["none", "xMinYMin", "xMidYMin", "xMaxYMin", "xMinYMid", "xMidYMid", "xMaxYMid", "xMinYMax", "xMidYMax", "xMaxYMax" ]; | |
var type2 = ["meet","slice"] | |
var width = (63)+"%"; | |
var height = width; | |
var viewBoxStartX = 0; | |
var viewBoxStartY = 0; | |
var viewBoxWidth = 1024; | |
var viewBoxHeight = 768; | |
var viewBox = viewBoxStartX+","+viewBoxStartY+","+(viewBoxWidth)+","+(viewBoxHeight); | |
svg | |
.style("width", width) | |
.style("height", height) | |
.style("background", "red") | |
.attr("preserveAspectRatio",types[4]+" "+type2[0]) | |
.attr("viewBox",viewBox) | |
svg.append("rect") | |
.attr("width",500) | |
.attr("height",600) | |
.style("fill", "#52923A") | |
.attr("x",10) | |
.attr("y",10) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment