-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (91 loc) · 4.72 KB
/
index.html
File metadata and controls
102 lines (91 loc) · 4.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nobel Prize Winners</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="pt-4">
<div class="container pt-4 pt-xl-5">
<div class="row pt-5">
<div class="col-md-8 text-center text-md-start mx-auto">
<div class="text-center">
<h1 class="display-4 fw-bold mb-5">Discover historys nobelprice <span class="underline">winners</span>.</h1>
</div>
</div>
</div>
</div>
</header>
<main>
<div class="row" style="margin-right: auto;margin-left: auto;width: 60%;">
<div class="filterbox">
<div class="box_left">
<div class="col"><span class="checkbox-text">Gender: </span></div>
<div class="col"><div class="form-check"><input class="form-check-input" type="checkbox" id="gender_male"><label class="form-check-label" for="formCheck-1">Male</label></div></div>
<div class="col"><div class="form-check"><input class="form-check-input" type="checkbox" id="gender_female"><label class="form-check-label" for="formCheck-1">Female</label></div></div>
</div>
<div class="box_right">
<div class="col"><span class="checkbox-text">Category: </span></div>
<div class="col"><div class="form-check"><input class="form-check-input" type="checkbox" id="physics"><label class="form-check-label" for="formCheck-1">Physics</label></div></div>
<div class="col"><div class="form-check"><input class="form-check-input" type="checkbox" id="chemistry"><label class="form-check-label" for="formCheck-1">Chemistry</label></div></div>
<div class="col"><div class="form-check"><input class="form-check-input" type="checkbox" id="medicine"><label class="form-check-label" for="formCheck-1">Medicine</label></div></div>
<div class="col"><div class="form-check"><input class="form-check-input" type="checkbox" id="literature"><label class="form-check-label" for="formCheck-1">Literature</label></div></div>
<div class="col"><div class="form-check"><input class="form-check-input" type="checkbox" id="economics"><label class="form-check-label" for="formCheck-1">Economics</label></div></div>
<div class="col"><div class="form-check"><input class="form-check-input" type="checkbox" id="peace"><label class="form-check-label" for="formCheck-1">Peace</label></div></div>
</div>
<hr class="hr_big">
</div>
</div>
<div class="time_slider">
<div class="timebar"><div class="timebar_progress"></div></div>
<div class="text_nodes"></div>
</div>
<div class="row" style="margin-right: auto;margin-left: auto;width: 60%;">
<ul class="timeline-list" id="timelineID"></ul>
</div>
<div class="row" style="margin-right: auto;margin-left: auto;width: 60%;">
<ul id="results"></ul>
</div>
<section class="info_modal info_hidden">
<div class="info-flex">
<h3 id="info-title">Welcome!</h3>
<p id="info-text">
Explore all nobelprice winners through the years. <br>
Have the award winners filtered through the different categories. For example Search for Female winners in the category physics.<br>
With our double timeline you can easily navigate through the centuries and select a specific year in the lower timeline.
</p>
<button id="info_button">Discover history</button>
</div>
</section>
<section class="modal hidden">
<div class="flex"><button class="btn-close">⨉</button></div>
<div class="modal_content">
<div id="modal-image-container">
<img id="modal-image"src="assets/img/placeholder.png" width="350em" height="350em"/>
</div>
<h3 id="modal-name"></h3>
<p id="modal-cat"></p>
<p id="modal-country"></p>
<p id="modal-born"></p>
<p id="modal-dead"></p>
<p id="modal-motivation"></p>
</div>
</section>
<div class="overlay hidden"></div>
<div class="info_overlay hidden"></div>
</main>
<footer>
<div class="container py-4 py-lg-5">
<hr>
<p id="about">About</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/animejs@3.0.1/lib/anime.min.js"></script>
<script src="app.js"></script>
</body>
</html>