-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlib.js
119 lines (101 loc) · 3.14 KB
/
lib.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
async function sleep(ms){
return new Promise(resolve=>{
setTimeout(resolve,ms)
})
}
var _libDEBUG = false;
var beaconPack = [
]
function elem(id){
return document.getElementById(id);
}
class animate{
track(){
window.addEventListener("scroll", function() {
const currentScrollTop = window.scrollY;
const scrnHt = this.window.innerHeight
beaconPack.forEach(function(b){
var pos = b.pos()
const d = scrnHt - pos.y;
const v = ((d/scrnHt)*100)
if(v>5 && v<100){
if(_libDEBUG){ console.log("beacon in view",b.self.getAttribute('id'),v);}
if(b.from == "left"){
elem(b.self.getAttribute('id')).style.transform = "translateX(0)";
}else if(b.from == "right"){
elem(b.self.getAttribute('id')).style.transform = "translateX(0)";
}else if(b.from == "top"){
elem(b.self.getAttribute('id')).style.transform = "translateY(0)";
}
else if(b.from == "bottom"){
elem(b.self.getAttribute('id')).style.transform = "translateY(0)";
} elem(b.self.getAttribute('id')).style.opacity = 1;
elem(b.self.getAttribute('id')).style.scale = 1;
}else if(v<0){
if(_libDEBUG){
console.log("beacon out of view");
console.log(currentScrollTop,pos.y)
}
if(b.from == "left"){
elem(b.self.getAttribute('id')).style.transform = "translateX(20%)";
}else if(b.from == "right"){
elem(b.self.getAttribute('id')).style.transform = "translateX(-20%)";
}else if(b.from == "top"){
elem(b.self.getAttribute('id')).style.transform = "translateY(-20%)";
}else if(b.from == "bottom"){
elem(b.self.getAttribute('id')).style.transform = "translateY(20%)";
} elem(b.self.getAttribute('id')).style.opacity = 0;
elem(b.self.getAttribute('id')).style.scale = 0.8;
}else{
}
});
});
}
}
class beacon{
self;
pos = ()=>{return getPos(elem(this.self.getAttribute('id')))};
from;
constructor(id){
if(_libDEBUG){
console.log("Trying to create beacon", id);
}
this.self = elem(id);
this.from = this.self.getAttribute('from');
this.self.style.opacity = 0;
this.self.style.scale = 0.8;
if(this.from == "left"){
this.self.style.transform = "translateX(20%)";
}else if(this.from == "right"){
this.self.style.transform = "translateX(-20%)";
}else if(this.from == "top"){
this.self.style.transform = "translateY(-20%)";
}else if(this.from == "bottom"){
this.self.style.transform = "translateY(20%)";
}
if(_libDEBUG){
console.log("created beacon", id);
}
}
}
function getPos(elem){
const element = elem;
const rect = element.getBoundingClientRect();
if(_libDEBUG){
console.log({x:rect.x,y:rect.y});
}
return {
x: rect.x,
y: rect.y
};
}
function trackBeacon(id){
var b = new beacon(id);
beaconPack.push(b);
if(_libDEBUG){
console.log("setting tracker for", id)
console.log(beaconPack);
}
}
anim= new animate();
anim.track();