bye bye github

This commit is contained in:
mynah
2018-07-13 19:06:08 -05:00
commit ee47c30aca
241 changed files with 26451 additions and 0 deletions

11
public/home/tv/trans/d3Tras.js vendored Executable file
View File

@@ -0,0 +1,11 @@
var h=window.innerHeight;
d3.select(window).on("scroll",function(){
var t = d3.select('#trs').node().getBoundingClientRect().top;
var trans= -0.2 + Math.round(100*(h-t)/h)/100;
d3.select('.grid').style("background-color","rgba(0,0,0,"+ trans +")");
});