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

12
public/home/pang/d3Tras.js vendored Executable file
View File

@@ -0,0 +1,12 @@
var h = d3.select('section#trs').node().getBoundingClientRect().top;
d3.select(window).on("scroll",function(){
var t = d3.select('#trs').node().getBoundingClientRect().top;
var trans= Math.min(Math.round(100*(h-t)/h)/100,0.98);
d3.selectAll('.trans').style("background-color","rgba(51,51,51,"+ trans +")");
});