-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfun.js
33 lines (29 loc) · 991 Bytes
/
fun.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
function Hello() {
alert("Hi will stop adding thin on desember 2 for two weeks and i will add things on november 16");
}
function EventHandler() {
alert("to play go to https://wondrous-jalebi-fb1e04.netlify.app/ ");
}
function getit() {
alert("fun yesss🎅🏼 you found santa congrats you won")
}
function getinoroute(){
alert("fun-miles2.netlify.app is the new link if you or useing the old link you will not be on the updated version if you are on a githud link you are still geting updates to it and will stop beyig suported sooon and taken done")
}
function yourmom(){
alert("your mom still in testing")
}
var fps = document.getElementById("fps");
var startTime = Date.now();
var frame = 0;
function tick() {
var time = Date.now();
frame++;
if (time - startTime > 1000) {
fps.innerHTML = (frame / ((time - startTime) / 1000)).toFixed(1);
startTime = time;
frame = 0;
}
window.requestAnimationFrame(tick);
}
tick();