-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgaia.html
98 lines (68 loc) · 4.17 KB
/
gaia.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
<!DOCTYPE html>
<html lang="fr">
<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">
<link rel="stylesheet" href="main.css">
<link rel="icon" type="image/ico" href="favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;1,100;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Portfolio</title>
</head>
<body>
<header>
<a id="header-title" href="index.html">Timothée JACOB</a>
<h4 id="header-subtitle" style="color: aquamarine;">Gaïa's Odyssey</h4>
<div id="header-border"></div>
</header>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
if(screen.width > 768){
$("#header-subtitle").css('width', $('#header-title').width() + 170 + 'px');
}
$(window).resize(function() {
$("header h4").css('width', $('header a').width() + 170 + 'px');
});
</script>
<div id="container-list-page">
<p class="text-right">
Ce programme a été réalisé dans le cadre de mes études en tant qu'<mark> introduction au génie logiciel. </mark> <br> Nous devions réaliser toutes les étapes de <mark> conception d'un jeu vidéo </mark> tout au long du semestre.
</p>
<span style="border: 1.2px solid rgb(233, 230, 227); width: 10%;"></span>
<p class="text-left" style=" margin-bottom: 10px;">
Pour cela nous avons mis en place différentes étapes :
<ul id="gaia-list" style="width: 60%; color: rgb(233, 230, 227);">
<li> Brainstorming</li>
<li> Réalisation d'un Minimum Viable Product (<mark> MVP </mark>) et d'un produit final idéal (<mark> TOP </mark>)</li>
<li> Réalisation d'un scénario et d'un storyboard</li>
<li> Organisation du travail par <mark> matrice RACI et GANTT </mark></li>
<li> Game development sur l'outil <mark> <a href="https://www.stencyl.com/" style="color: rgb(233, 230, 227); text-decoration: underline;">Stencyl</a> </mark></li>
<li> Game-design et level-design : Utilisation du logiciel <mark> open-source Inkscape </mark> pour la réalisation des graphismes</li>
<li> <mark> Tests utilisateurs </mark> avec protocole de test</li>
<li> Réalisation d'un pitch et d'une publicité</li>
<li> Présentation du produit final</li>
</ul>
</p>
<span style="border: 1.2px solid rgb(233, 230, 227); width: 10%;"></span>
<p class="text-right">
Notre but pour ce projet était, dans un laps de temps très court, de créer un jeu qui soit divertissant, <br> avec le minimum de bugs possible, présentant une qualité graphique et sonore suffisante, <br> et de sensibiliser les joueurs à la protection de l'environnement.
</p>
<div id="menu-button-list" class="phone-hidden">
<a class="dnbtn" href="./game" target="_blank">Jouer au jeu !</a>
</div>
</div>
<footer>
<div id="footer-text">
<p>Made by Timothée JACOB</p>
</div>
<div id="footer-links">
<a href="https://www.instagram.com/timothee_jacob/" target="_blank" class="fa fa-instagram"></a>
<a href="https://www.linkedin.com/in/timoth%C3%A9e-jacob-1b6b63192/" target="_blank" class="fa fa-linkedin"></a>
<a href="https://github.com/TimoJac/portfolio" target="_blank" class="fa fa-github"></a>
<a href="CV_Timothee_JACOB.pdf" target="_blank" class="fa fa-file-text"></a>
</div>
</footer>
</body>
</html>