-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject_9.html
79 lines (76 loc) · 4.04 KB
/
project_9.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Montserrat:600,700,800" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<link rel="stylesheet" href="./code.css">
<title>Pascal Schlaak | Portfolio</title>
<link rel="icon" type="image/png" href="./imgs/icons/logo_small.svg">
</head>
<body>
<div id="app">
<navbar-normal></navbar-normal>
<navbar-small></navbar-small>
<hamburger></hamburger>
<section id="project">
<img src="./imgs/dots.png" id="dots">
<div class="container project-text">
<h1>Web-based quiz during COVID-19 quarantine</h1>
<div class="flex-row">
<div class="column-65">
<p class="text">
Since I'm carantined inside during COVID-19 and can't meet my friends in person, I built an
quiz based on web-techologies like <code>JavaScript, Vue.js</code> to entertain my friends
with funny questions about our friendships.
I mainly wanted to generate an framework where we could insert categories, questions and
display each teams points.
</p>
<img src="./imgs/project_9/quiz_1.PNG" alt="Whidobree landing page" data-aos="fade-up">
<p class="text">
You can choose between different categories and difficulties of questions based. By clicking
on the desired field a pop-up displays the question and allows to visualize the solution by
clicking on a button.
If a field was played it gets more transparent to visualize that this field was already
visited. Points can be adjusted at any time.
</p>
<img src="./imgs/project_9/quiz_2.PNG" alt="Whidobree landing page" data-aos="fade-up">
</div>
<div>
<div class="information border">
<p class="text"><b>Type</b></p>
<p class="text">Private project</p>
<p class="text"><b>Tools</b></p>
<p class="text">JavaScript, Vue.js, Adobe XD</p>
<p class="text"><b>Partners</b></p>
<p class="text">-</p>
<p class="text"><b>Date</b></p>
<p class="text">2020-04-24</p>
<p class="text"><b>Source</b></p>
<p class="text">Private
</p>
</div>
</div>
</div>
</div>
</section>
<footer-portfolio></footer-portfolio>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$('#hamburger, #home, #proj, abo').click(function () {
$("#hamburger").toggleClass('open');
});
});
</script>
<script type="text/javascript" src="./main.js"></script>
</body>
</html>