-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
136 lines (132 loc) · 4.88 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Personal Presentation</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #4398cb;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 20px;
box-sizing: border-box;
}
.container {
background-color: #c7e0f0;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 24px;
max-width: 600px;
width: 100%;
}
h1 {
text-align: center;
color: #1f2937;
margin-bottom: 24px;
}
.comic-panel {
position: relative;
margin-bottom: 20px;
}
.comic-panel img {
width: 100%;
height: auto;
border-radius: 8px;
}
.caption {
margin-top: 12px;
text-align: center;
font-size: 18px;
color: #4b5563;
}
.nav-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgb(113, 107, 107);
border: none;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.nav-button:hover {
background-color: #8997b4;
}
.prev {
left: 10px;
}
.next {
right: 10px;
}
.links {
display: flex;
justify-content: center;
gap: 16px;
margin-top: 24px;
}
.links a {
color: #3b82f6;
text-decoration: none;
}
.links a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Jean Luis Soto!</h1>
<div class="comic-panel">
<img id="panel-image" src="/placeholder.svg?height=300&width=400" alt="Comic panel">
<p id="panel-caption" class="caption">Bonjour à tous ! J'ai rejoint l'équipe UX Data en juillet en tant que stagiaire pour aider à appliquer des applications d'Intelligence Artificielle au sein de l'équipe.</p>
<button class="nav-button prev" onclick="changePanel(-1)">❮</button>
<button class="nav-button next" onclick="changePanel(1)">❯</button>
</div>
<div class="links">
<a href="https://www.linkedin.com/in/jeanluissoto" target="_blank" rel="noopener noreferrer">LinkedIn</a>
<a href="https://jeanlsoto54.github.io" target="_blank" rel="noopener noreferrer">Portfolio</a>
</div>
</div>
<script>
const panels = [
{
image: "images/P1100696.jpg",
caption: "Bonjour à tous ! J'ai rejoint l'équipe UX Data en juillet en tant que stagiaire pour aider à appliquer des applications d'Intelligence Artificielle au sein de l'équipe. Actuellement, je fais mon master en Data Science à l'EM Lyon Business School."
},
{
image: "images/pexels-fauxels-3183150.jpg",
caption: "Auparavant, j'ai acquis de l'expérience en tant que consultant d'affaires et analyste en intelligence d'affaires dans des secteurs tels que la banque, l'assurance et les startups en Amérique latine et en Espagne."
},
{
image: "images/2024-09-20 181902.png",
caption: "Je suis originaire du Pérou, Junin. Je suis installée en France depuis 2023. Chaque jour, j'apprécie et embrasse la culture française."
},
{
image: "images/IMG_20211219_122724MP.jpg",
caption: "Pendant mon temps libre, quand il fait beau, j'aime jouer au basket, faire du vélo et de la randonnée. À la maison, j'aime généralement lire et regarder des séries. Je suis plus que reconnaissant de faire partie de cette équipe !"
}
];
let currentPanel = 0;
function changePanel(direction) {
currentPanel = (currentPanel + direction + panels.length) % panels.length;
updatePanel();
}
function updatePanel() {
const panelImage = document.getElementById('panel-image');
const panelCaption = document.getElementById('panel-caption');
panelImage.src = panels[currentPanel].image;
panelCaption.textContent = panels[currentPanel].caption;
}
</script>
</body>
</html>