-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
59 lines (51 loc) · 1.6 KB
/
script.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
// Learn more about using JavaScript to interact with webpages:
// https://developer.mozilla.org/en-US/docs/Web/javascript
const LUCAS_COUNT = 7;
let lucasIncrement = 0;
const COLORS = [
"rebeccapurple",
"magenta",
"lime",
"violet",
"red",
"cyan",
"yellow",
"springgreen",
"aqua",
"orange",
"crimson",
"coral",
"deeppink",
"dodgerblue",
"gold"
];
const button = document.getElementById("change-background-color");
const lucasButton = document.getElementById("increment-lucas");
button.addEventListener("click", changeBackgroundColor);
lucasButton.addEventListener("click", incrementLucas);
document.addEventListener("DOMContentLoaded", function() {
document.getElementById("lucas-counter").innerText = LUCAS_COUNT;
document.getElementById("url").innerText = window.location;
document.getElementById("library-url").href = `beaker://library/${
window.location
}`;
// is this a Dat-supported website? If so, use a dat:// URL for the beakerbrowser.com link
const beakerLink = document.getElementById("beaker-url");
if (window.DatArchive) {
beakerLink.href = "dat://beakerbrowser.com";
} else {
beakerLink.href = "https://beakerbrowser.com";
}
});
function changeBackgroundColor() {
const maxIdx = COLORS.length - 1;
const idx = Math.floor(Math.random() * Math.floor(maxIdx));
const newColor = COLORS[idx];
document.body.style.background = newColor;
}
function incrementLucas() {
// if ITS OVER 9000! we have a problem
lucasIncrement = Math.min(9000, lucasIncrement + 1);
document.getElementById("lucas-counter").innerText =
LUCAS_COUNT + lucasIncrement;
}