-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathativity.html
199 lines (173 loc) · 5.97 KB
/
ativity.html
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE html>
<html>
<head>
<script src="https://kit.fontawesome.com/d9d84a2919.js" crossorigin="anonymous"></script>
<style>
* {
margin: 0;
}
body {
overflow: hidden;
}
div {
margin-left: 5px;
}
button {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin: 0 5px;
padding: 5px 10px;
background-color: #393939;
color: #fefefe;
border-radius: 15px;
border: none;
}
.ui {
margin-top: 6px;
margin-left: 12px;
}
#refresh {
margin: 20px 8px;
width: 90%;
}
#play-playback {
margin: 60px 110px;
position: absolute;
z-index: 1;
}
#exit {
display: none;
margin: 7.6vh 90vw;
position: absolute;
z-index: 1;
}
#playback-control {
position: absolute;
display: none;
}
#pop-up {
background-color: red;
width: 100px;
height: 100px;
position: absolute;
}
button:hover {
background-color: #5f5f5f;
color: cyan;
}
section {
width: 210px;
height: 42px;
position: fixed;
margin-left: -105px;
top: 87vh;
left: 50vw;
border-radius: 20px;
background-color: rgba(10, 10, 10, 0.5);
}
canvas {
position: absolute;
}
#delayed-canvas {
position: fixed;
height: 100vh;
width: 100vw;
display: none;
}
#test-divs {
width: 900px;
height: 400px;
margin-left: 435px;
margin-top: 210px;
background-color: transparent;
}
#handle-test {
margin-left: 5%;
width: 90%;
height: 45px;
margin-bottom: 13px;
color: transparent;
}
#frame {
background-image: url(https://i.ibb.co/LtgnwFr/Screenshot-2022-12-07-at-14-33-17-Recruit-For-Me-Community-Building-Job-Searching-and-Hiring-Help.png);
display: none;
position: absolute;
top: 50%;
left: 50%;
width: calc(80vw + 80px);
height: calc(80vh + 80px);
margin: calc(-40vh - 40px) 0 0 calc(-40vw - 40px);
border: solid black;
background-color: rgba(0, 0, 0, 0);
}
</style>
</head>
<body>
<button id="play-playback" onclick="
playback(dataPoints);
document.getElementById('playback-control').style.display = 'block';
document.getElementById('exit').style.display = 'block';
document.getElementById('frame').style.display = 'block';
activityObject();
pageExit(temp[0][0], exitPoints[0][1]);
">View Heatmap</button>
<div class="container">
<div id="frame"></div>
<canvas id="canvas"></canvas>
<canvas id="delayed-canvas"></canvas>
</div>
<!-- <div id="pop-up">pop up</div> -->
<section id="test-divs">
<div id="handle-test" onmouseover="mouseHover=true" onmouseout="mouseHover=false">Github</div>
<div id="handle-test" onmouseover="mouseHover=true" onmouseout="mouseHover=false">Instagram</div>
<div id="handle-test" onmouseover="mouseHover=true" onmouseout="mouseHover=false">Linkedin</div>
<div id="handle-test" onmouseover="mouseHover=true" onmouseout="mouseHover=false">Youtube</div>
</section>
<section id="playback-control">
<button class="ui" id="playback-time">0</button>
<button class="ui" id="pause" onclick="pause()"><i class="fa-solid fa-pause"></i></button>
<button class="ui" id="play" onclick="play()"><i class="fa-solid fa-play"></i></button>
<button class="ui" id="restart" onclick="
clearInterval(playbackTimer);
clearInterval(drawPlayback);
clearInterval(drawDelay);
playbackTime = 0;
activeTimer = true;
playback(dataPoints);
document.getElementById('playback-control').style.display = 'block';
activityObject();
pageExit(temp[0][0], exitPoints[0][1]);
"><i class="fa-solid fa-rotate-right"></i></i></button>
</section>
<button id="exit" onclick="
document.getElementById('frame').style.display = 'none'
document.getElementById('playback-control').style.display = 'none';
document.getElementById('exit').style.display = 'none';
clearInterval(playbackTimer);
clearInterval(drawPlayback);
clearInterval(drawDelay);
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx2.clearRect(0, 0, canvas.width, canvas.height);
"><i class="fa-regular fa-circle-xmark"></i></button>
<script src="./useractivity.js"></script>
<script src="./playbackV2.js"></script>
<script src="./mouseevent.js"></script>
<script>
const exitPopUp = document.createElement("div");
// exitPopUp.setAttribute("id", "pop-up");
function testAddDivs(xcoord, ycord) {
document.body.appendChild(exitPopUp);
var asdasd = xcoord;
var bfdfds = ycord;
console.log(asdasd, bfdfds)
// document.getElementById("pop-up").style.left = xcoord + "px"
// document.getElementById("pop-up").style.top = ycord + "px"
}
var hideButton = document.getElementById("play-playback");
// Add an event listener to the button that listens for clicks
hideButton.addEventListener("click", function () {
// When the button is clicked, hide the button
hideButton.style.display = "none";
});
</script>
</body>
</html>