Skip to content

Instantly share code, notes, and snippets.

@ptvans
Created September 9, 2013 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ptvans/6499535 to your computer and use it in GitHub Desktop.
Save ptvans/6499535 to your computer and use it in GitHub Desktop.
control test
{"description":"control test","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"pingpong","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"thumbnail":"http://i.imgur.com/GdOK8s9.png","controls":{"test1":"grey","xpos":170,"ypos":120},"inline-console":true}
var svg = d3.select("svg");
var sel = tributary.control({name:"test1", options: ["red", "grey"]})
console.log("selected", sel);
var sliderVal = tributary.control({name:"xpos", min: 20, max: 320})
var sliderVal2 = tributary.control({name:"ypos", min: 20, max: 420})
console.log("slider", sliderVal);
console.log(tributary.__controls__)
var rect = svg.append("rect")
.attr({
x: sliderVal,
y: sliderVal2,
width: 100,
height: 100
})
.style({
fill: sel
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment