-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
130 lines (111 loc) · 4.79 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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inkarnasjon!v2.0.7</title>
<link rel="stylesheet" href="css/main.css">
<script src="https://kit.fontawesome.com/6f8b16282b.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="dropdown-content" id="dropdown">
<a href="#" style="display:flex" id="stethoScope">
<div class="center">
<img src="images/veneflon.png" width="40px"></img>
<b style="display:inline-block; margin-left: 20px">Veneflon</b>
</div>
</a>
<a href="#" style="display:flex" id="cvk">
<div class="center">
<img src="images/cvk.png" width="40px"></img>
<b style="display:inline-block;margin-left: 20px ">Cvk</b>
</div>
</a>
<a href="#" id="bandage" style="display:flex">
<div class="center">
<img src="images/bandage.png" width="40px"></img>
<b style="display:inline-block; margin-left: 20px">Plaster</b>
</div>
</a>
<a href="#" id="bandage2" style="display:flex">
<div class="center">
<img src="images/bandage2.png" width="40px"></img>
<b style="display:inline-block; margin-left: 20px">Bandasje</b>
</div>
</a>
<a href="#" id="catheter" style="display:flex">
<div class="center">
<img src="images/catheter.png" width="40px"></img>
<b style="display:inline-block; margin-left: 20px">Kateter</b>
</div>
</a>
<a href="#" id="wound" style="display:flex">
<div class="center">
<img src="images/wound.png" width="40px" ></img>
<b style="display:inline-block; margin-left: 20px; text-align:center">Sår/utlsett</b>
</div>
</a>
</div>
<div class="card" id="card" style="flex-direction: column; max-width: 25%">
<img src="images/julebrus.jpg" alt="Attachment" id="cardImageValue"></img>
<div class="container">
<div>
<b>Lagt til:</b> <p id="whenInsertedValue" style="display:inline-block;">08.12.2022</p>
</div>
<div>
<b>Må skiftes/vedlikeholdes:</b> <p id="cleanOrChangeTimeValue" style="display:inline-block">09.12.2022</p>
</div>
<div>
<b>Må fjernes:</b> <p id="whenToRemoveValue" style="display:inline-block">01.09.2031</p>
</div>
<hr class="rounded">
<div class="center">
<img width="75px" src="images/bandage.png" id="cardTypeImage"></img>
</div>
<hr class="rounded">
<div class="remove" id="remove">
<i class="fa-solid fa-trash fa-2xl"></i>
<p style="margin-left: 10px">Fjern</p>
</div>
</div>
</div>
<div class="card" id="createCard" style="flex-direction:column; justify-content: space; padding: 20px; max-width: 25%">
<div style="display:flex;">
<h2>Sett metadata</h2> <button id="doneButton" style="display:inline-block; height: 20px; margin:auto; margin-left: 25%">Lagre</button>
</div>
<b for="cardImageInput">Vedlegg:</b>
<input id="cardImageInput" type="file" accept="image/png, image/jpg, image/jpeg" placeholder="Velg" >
<b>Lagt til:</b>
<input id="insertedInput" type="datetime-local">
<b>Må skiftes/vedlikeholdes:</b>
<input id="cleanOrChangeTimeInput" type="datetime-local" placeholder="Insert date and time">
<b>Må fjernes:</b>
<input id="removeTimeInput" type="datetime-local" placeholder="Insert date and time">
<hr class="rounded" style="width: 100%">
<div class="center">
<img id="createCardTypeImage" style="width: 100px; height: auto; object-fit:cover" src="images/bandage.png"></img>
</div>
</div>
<div class="static-dropdown">
<button class="dropbtn">Velg menneske</button>
<div class="static-dropdown-content">
<a href="#" id="child">Barn</a>
<a href="#" id="youth">Ungdom</a>
<a href="#" id="grown">Voksen</a>
</div>
</div>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/[email protected]/build/three.module.js",
"orbitControls":"https://unpkg.com/[email protected]/examples/jsm/controls/OrbitControls.js",
"fbxLoader":"https://unpkg.com/[email protected]/examples/jsm/loaders/OBJLoader.js",
"dragControls":"https://unpkg.com/[email protected]/examples/jsm/controls/DragControls.js",
"css3drenderer":"https://unpkg.com/[email protected]/examples/jsm/renderers/CSS3DRenderer.js"
}
}
</script>
<script type="module" src="js/main.js"></script>
</body>
</html>