blob: ae3e4535bc574d689b9c2ce910edda7cdf6562f0 (
plain)
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
|
function Browser(state) {
if (state) {
overlay.classList.add("shown")
browser.classList.add("shown")
return
} else if (! state) {
if (state != undefined) {
overlay.classList.remove("shown")
browser.classList.remove("shown")
return
}
}
overlay.classList.toggle("shown")
browser.classList.toggle("shown")
};Browser()
document.body.addEventListener("keyup", (e) => {
if (e.key == "Escape") {Browser(false)}
})
function BrowserEl(properties) {
properties = {
title: "No name",
image: "icons/no-image.png",
author: "Unnamed Pilot",
description: "No description",
...properties
}
browser.innerHTML += `
<div class="el">
<div class="image">
<img src="${properties.image}">
</div>
<div class="text">
<div class="title">${properties.title}</div>
<div class="description">${properties.description} - by ${properties.author}</div>
</div>
</div>
`
}
new BrowserEl()
new BrowserEl()
new BrowserEl()
|