-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 1.29 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Pondering me orb</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<!-- <blink>AYYY LMAO</blink> -->
<div id="orbholder">
<img id="orb" src="orb.jpg"/>
<div id="flare_wrap">
<img id="flare1" class="flare" src="flare.png"/>
<img id="flare2" class="flare" src="flare.png"/>
</div>
<!--<iframe id="glowinthedark" src="https://global-mind.org/gcpdot/gcp.html" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" ></iframe>-->
<iframe id="gcpdotframe" src="https://global-mind.org/gcpdot/gcp.html" width="360" height="364" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" ></iframe>
</div>
<script>
//reload the page every 6 hours, for some reason the gcpdot xhr fails if running for too long
setTimeout(()=>{ window.location.reload(); },1000*60*60*3);
//shenanigans
window.addEventListener('focus',(e)=>{
var _frame = document.getElementById('gcpdotframe');
let thesrc = _frame.src;
_frame.src="about:blank";
_frame.src = thesrc;
},{ once: true });
</script>
</body>
</html>