Skip to content

Commit b2d04e7

Browse files
committed
Update team page
1 parent 8df06c0 commit b2d04e7

File tree

5 files changed

+162
-32
lines changed

5 files changed

+162
-32
lines changed

florence.html

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,9 @@ <h3>
5050
<p>@HaudinFlorence</p>
5151
</div>
5252
<div class="description">
53-
<p>
54-
<p align="justify" >Florence is a Scientific Software Engineer at Quantstack. She obtained a phD in Physics in 2010 and then was a post doctoral researcher up to 2017. During almost ten years, she performed experimental studies in various fields (nonlinear optics, soft matter, nonlinear physical chemistry, fluid mechanics). </p>
55-
56-
<p align="justify">Before joining QuantStack, during four years, Florence was working in Vulcain's engineering company, in the R&D department. She was involved not as a developper but as a research engineer in a program dealing with the development of calculation tool for offshore wind turbines. This was a first jump in scientific software development challenges. </p>
57-
<p align="justify"> She is very keen on now contributing to open-source projects. </p>
58-
<p>
53+
<p align="justify" >Florence is a Scientific Software Engineer at Quantstack. She obtained a phD in Physics in 2010 and then was a post doctoral researcher up to 2017. During almost ten years, she performed experimental studies in various fields (nonlinear optics, soft matter, nonlinear physical chemistry, fluid mechanics). </p>
54+
<p align="justify">Before joining QuantStack, during four years, Florence was working in Vulcain's engineering company, in the R&D department. She was involved not as a developper but as a research engineer in a program dealing with the development of calculation tool for offshore wind turbines. This was a first jump in scientific software development challenges. </p>
55+
<p align="justify"> She is very keen on now contributing to open-source projects. </p>
5956
</div>
6057
</div>
6158
</div>

gabriela.html

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1" />
8+
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
9+
<!-- Bootstrap -->
10+
<link href="css/bootstrap.min.css" rel="stylesheet" />
11+
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
12+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
13+
<!--[if lt IE 9]>
14+
<script src="js/html5shiv.min.js"></script>
15+
<script src="js/respond.min.js"></script>
16+
<![endif]-->
17+
18+
<link href="css/styles.css" rel="stylesheet" />
19+
<title>Gabriela Vives - User Experience Researcher and Designer</title>
20+
</head>
21+
<body>
22+
<div id="content-head"></div>
23+
<div class="container-fluid fond fond5 parallax">
24+
<div class="container">
25+
<div class="col-md-10 col-md-push-1 fleche-retour">
26+
<a href="the-team.html"
27+
><img class="fleche-gauche" src="img/fleche-gauche.svg" /><span
28+
>The team</span
29+
></a
30+
>
31+
</div>
32+
</div>
33+
</div>
34+
<div class="container">
35+
<div class="col-md-8 col-md-push-2">
36+
<div class="fiche">
37+
<div class="text-center">
38+
<img
39+
src="img/avatar/Gabriela.jpg"
40+
srcset="img/avatar/Gabriela@2x.jpg 2x"
41+
class="img-circle avatar"
42+
/>
43+
<h3>
44+
<strong>Gabriela Vives</strong><br />
45+
User Experience Researcher and Designer
46+
</h3>
47+
<div class="reseau">
48+
<a target="_blank" href="https://github.com/GabrielaVives"><img class="twi-gith" src="img/github.svg"></a>
49+
</div>
50+
<p>@GabrielaVives</p>
51+
</div>
52+
<div class="description">
53+
<p align="justify">Gabriela Vives is a User Experience Researcher and Designer, passionate about working in scientific domains. She first graduated with master degrees in nuclear energy and cognitive science. After working for research, she decided to continue her studies and graduated in Human-Computer Interactions. Prior to QuantStack, Gabriela worked as a User Experience Designer at Schlumberger for 4 years, conducting user research and creating user-centered interfaces for geoscience software.</p>
54+
</div>
55+
</div>
56+
</div>
57+
</div>
58+
59+
<div class="spacer big"></div>
60+
61+
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
62+
<script src="js/jquery.min.js"></script>
63+
<!-- Include all compiled plugins (below), or include individual files as needed -->
64+
<script src="js/bootstrap.min.js"></script>
65+
66+
<div id="content-foot"></div>
67+
<script src="js/include-menus.js"></script>
68+
<script>
69+
function isInViewport(node) {
70+
var rect = node.getBoundingClientRect();
71+
return (
72+
(rect.height > 0 || rect.width > 0) &&
73+
rect.bottom >= 0 &&
74+
rect.right >= 0 &&
75+
rect.top <=
76+
(window.innerHeight || document.documentElement.clientHeight) &&
77+
rect.left <=
78+
(window.innerWidth || document.documentElement.clientWidth)
79+
);
80+
}
81+
82+
$(window).scroll(function () {
83+
var scrolled = $(window).scrollTop();
84+
$(".parallax").each(function (index, element) {
85+
var initY = $(this).offset().top + 200;
86+
var height = $(this).height();
87+
var endY = initY + $(this).height();
88+
// Check if the element is in the viewport.
89+
var visible = isInViewport(this);
90+
if (visible) {
91+
var diff = scrolled - initY;
92+
var ratio = Math.round((diff / height) * 100);
93+
var move = parseInt(-(ratio * 1.5));
94+
// if (move>90)move = 90;
95+
$(this).css("background-position", "center " + move + "px");
96+
}
97+
});
98+
99+
$(".icons").each(function (index, element) {
100+
var visible = isInViewport(this);
101+
if (visible) {
102+
$(".icon-content").each(function (index, element) {
103+
$(this)
104+
.delay(index * 500)
105+
.fadeIn();
106+
});
107+
}
108+
});
109+
});
110+
</script>
111+
</body>
112+
</html>

img/avatar/Gabriela.jpg

28.3 KB
Loading

img/avatar/Gabriela@2x.jpg

63 KB
Loading

the-team.html

Lines changed: 47 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,29 @@ <h3><a href="javascript:;">Afshin Darian</a><br/>
216216
</div>
217217
</div>
218218
</div>
219+
<div class="col-md-4">
220+
<div class="portrait-bis" >
221+
<div data-href="frederic.html">
222+
<div class="haut-portrait">
223+
</div>
224+
<div class="text-center">
225+
<a href="javascript:;" class="img-circle avatar">
226+
<img src="img/avatar/Frederic.jpg" srcset="img/avatar/Frederic@2x.jpg 2x" class="img-circle avatar">
227+
</a>
228+
<h3><a href="javascript:;">Frédéric Collonval</a><br/>
229+
Technical Director
230+
</h3>
231+
<a href="javascript:;"><img class="fleche" src="img/fleche-droite.svg"></a>
232+
</div>
233+
</div>
234+
<div class="text-center">
235+
<div class="reseau">
236+
<a target="_blank" href="https://github.com/fcollonval"><img class="twi-gith" src="img/github.svg"></a>
237+
</div>
238+
<p>@fcollonval</p>
239+
</div>
240+
</div>
241+
</div>
219242
</div>
220243
</div>
221244

@@ -276,30 +299,6 @@ <h3><a href="javascript:;">Carlos Herrero</a><br/>
276299
</div>
277300
</div>
278301
</div>
279-
<div class="col-md-4">
280-
<div class="portrait-bis" >
281-
<div data-href="frederic.html">
282-
283-
<div class="haut-portrait">
284-
</div>
285-
<div class="text-center">
286-
<a href="javascript:;" class="img-circle avatar">
287-
<img src="img/avatar/Frederic.jpg" srcset="img/avatar/Frederic@2x.jpg 2x" class="img-circle avatar">
288-
</a>
289-
<h3><a href="javascript:;">Frédéric Collonval</a><br/>
290-
Scientific Software Developer
291-
</h3>
292-
<a href="javascript:;"><img class="fleche" src="img/fleche-droite.svg"></a>
293-
</div>
294-
</div>
295-
<div class="text-center">
296-
<div class="reseau">
297-
<a target="_blank" href="https://github.com/fcollonval"><img class="twi-gith" src="img/github.svg"></a>
298-
</div>
299-
<p>@fcollonval</p>
300-
</div>
301-
</div>
302-
</div>
303302
<div class="col-md-4">
304303
<div class="portrait-bis" >
305304
<div data-href="thorsten.html">
@@ -512,13 +511,35 @@ <h3><a href="javascript:;">Isabel Paredes</a><br/>
512511
</div>
513512
<div class="text-center">
514513
<div class="reseau">
515-
<a target="_blank" href="https://github.com/brichet"><img class="twi-gith" src="img/github.svg"></a>
514+
<a target="_blank" href="https://github.com/ihuicatl"><img class="twi-gith" src="img/github.svg"></a>
516515
</div>
517516
<p>@ihuicatl</p>
518517
</div>
519518
</div>
520519
</div>
521-
520+
<div class="col-md-4">
521+
<div class="portrait-bis" >
522+
<div data-href="gabriela.html">
523+
<div class="haut-portrait">
524+
</div>
525+
<div class="text-center">
526+
<a href="javascript:;" class="img-circle avatar">
527+
<img src="img/avatar/Gabriela.jpg" srcset="img/avatar/Gabriela@2x.jpg 2x" class="img-circle avatar">
528+
</a>
529+
<h3><a href="javascript:;">Gabriela Vives</a><br/>
530+
User Experience Researcher and Designer
531+
</h3>
532+
<a href="javascript:;"><img class="fleche" src="img/fleche-droite.svg"></a>
533+
</div>
534+
</div>
535+
<div class="text-center">
536+
<div class="reseau">
537+
<a target="_blank" href="https://github.com/GabrielaVives"><img class="twi-gith" src="img/github.svg"></a>
538+
</div>
539+
<p>@GabrielaVives</p>
540+
</div>
541+
</div>
542+
</div>
522543

523544
</div>
524545
</div>

0 commit comments

Comments
 (0)