-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
56 lines (49 loc) · 1.67 KB
/
app.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
function genRGB() {
const r = Math.floor(Math.random() * 255);
const g = Math.floor(Math.random() * 255);
const b = Math.floor(Math.random() * 255);
return `rgb(${r},${g},${b})`;
};
function returnGradient() {
let deg =Math.floor(Math.random() * 360);
return `linear-gradient(${deg}deg,${genRGB()},${genRGB()},${genRGB()})`;
};
const button = document.querySelector('#main');
const copyButton = document.querySelector('#copy');
const cbIcon = document.querySelector('#cbIcon');
const histButton = document.querySelector('#history')
const histIcon = document.querySelector('#hIcon')
let history = [];
let histCount = 0
button.addEventListener('click', function (e) {
const gradient = returnGradient();
document.body.style.background = gradient;
button.innerHTML = gradient;
history.unshift(gradient);
copyButton.classList.remove('hide');
cbIcon.setAttribute('class', 'bi bi-clipboard');
if (history.length > 1) {
histButton.classList.remove('hide');
hIcon.setAttribute('class', 'bi bi-arrow-left');
}
histButton.disabled = false
histCount =0
});
copyButton.addEventListener('click', function (e) {
let buttonText = button.innerText;
const cb = navigator.clipboard;
cb.writeText(buttonText);
cbIcon.setAttribute('class', 'bi bi-clipboard-check');
});
histButton.addEventListener('click', function (e) {
histCount += 1
cbIcon.setAttribute('class', 'bi bi-clipboard');
document.body.style.background = history[histCount];
if (histCount < history.length) {
button.innerHTML = history[histCount];
} else {
let lastGrad = histCount - 1;
button.innerHTML = history[lastGrad];
histButton.disabled = true
}
})