forked from bdargan/techradar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (61 loc) · 1.66 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
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<script src="https://code.jquery.com/jquery-1.10.1.min.js" integrity="sha256-SDf34fFWX/ZnUozXXEH0AeB+Ip3hvRsjLwp6QNTEb3k=" crossorigin="anonymous"></script>
<script src="https://techradar-fb13.restdb.io/rest/_jsapi.js"></script>
<script src="bower_components/svg.js/dist/svg.min.js"></script>
<script src="bower_components/svg.draggable.js/dist/svg.draggable.min.js"></script>
<style type="text/css" media="screen">
.radar {
position: relative;
height: 800px;
}
.radar > svg {
margin: auto;
display: block;
}
button {
border-width: 1px;
border-style: solid;
border-color: #636363;
border-image: initial;
font-weight: bold;
min-height: 30px;
cursor: pointer;
}
svg text {
font-size: small;
}
.bg-label {
font-size: 12px;
font-weight: bold;
}
.item-label {
font-size: x-small;
}
.legend {
min-width: 120px;
}
</style>
<script type="text/javascript" src="radar.js" charset="utf-8"></script>
</head>
<body>
<h1 id="title" style="text-align: center;"></h1>
<div class="radar" data-src="twofour"></div>
<ul>
<li><b>Zone 1</b>: Hat sich etabliert</li>
<li><b>Zone 2</b>: Gute Erfahrung & Empfehlenswert/Weiterführen</li>
<li><b>Zone 3</b>: Interessant & ausreichend Erfahrung</li>
<li><b>Zone 4</b>: Interessant & benötigt mehr Erfahrung</li>
</ul>
<div>
<div>
<a id="admin" title="https://techradar-fb13.restdb.io" href="https://techradar-fb13.restdb.io" target="blank">Admin</a>
</div>
<div>
<label>Editmode: </label>
<input type="checkbox" id="editmode" name="editmode">
</div>
</div>
</body>
</html>