Skip to content

Instantly share code, notes, and snippets.

@roundrobin
Created August 4, 2012 05:10
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 roundrobin/3254717 to your computer and use it in GitHub Desktop.
Save roundrobin/3254717 to your computer and use it in GitHub Desktop.
just another inlet to tributary
function randomXToY(minVal,maxVal,floatVal)
{
var randVal = minVal+(Math.random()*(maxVal-minVal));
return typeof floatVal=='undefined'?Math.round(randVal):randVal.toFixed(floatVal);
}
tributary.init = function(g) {
var data = d3.range(0,232);
var enterSelection = g.append('g')
.attr('class','groupi')
var gg = enterSelection.selectAll('.elemets')
.data(data)
.enter()
var rect = gg.append('rect')
.attr("width",function(d,i){
return d;
})
.attr("height",function(d,i){
return d;
})
.attr("x",function(d,i){
return Math.sin(d)*1994.32;
})
.attr("y", function(d,i){
return Math.sin(d)*(211);
})
.attr("fill","#0F3D57")
.attr("stroke","#000000")
.attr("stroke-width",5);
g.rect = rect;
};
tributary.run = function(g,t) {
var delta = Math.floor(t * 100);
var rect = g.rect;
if(delta % 96 == 0 ){
console.log(rect);
rect
.transition()
.ease('elastic(2, 10)')
.duration(2000)
.attr('x',function(){
return Math.random()*900
})
.attr('y',function(){
return Math.random()*900
})
.attr('opacity',function(){
return randomXToY(0,1);
})
}
if(delta % 34 == 0 ){
console.log(rect);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment