-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
253 lines (220 loc) · 7.34 KB
/
Copy pathindex.html
File metadata and controls
253 lines (220 loc) · 7.34 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XR Portfolio | Proyectos Inmersivos</title>
<style>
:root {
--bg-color: #0a0a0c;
--card-bg: rgba(20, 20, 25, 0.6);
--text-color: #f3f4f6;
--text-muted: #9ca3af;
--accent-vr: #00f2fe;
--accent-ar: #4facfe;
--border-color: rgba(255, 255, 255, 0.05);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: '-apple-system', BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
overflow-x: hidden;
line-height: 1.6;
}
/* Fondo futurista sutil */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 30%, rgba(0, 242, 254, 0.05) 0%, transparent 40%),
radial-gradient(circle at 80% 70%, rgba(79, 172, 254, 0.05) 0%, transparent 40%);
z-index: -1;
}
header {
text-align: center;
padding: 5rem 2rem 3rem;
}
header h1 {
font-size: 2.5rem;
font-weight: 300;
letter-spacing: 4px;
text-transform: uppercase;
background: linear-gradient(to right, #fff, var(--text-muted));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 1rem;
}
header p {
color: var(--text-muted);
font-size: 1rem;
letter-spacing: 1px;
max-width: 600px;
margin: 0 auto;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 2rem;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2.5rem;
}
.card {
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 2.5rem;
display: flex;
flex-direction: column;
justify-content: space-between;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
position: relative;
overflow: hidden;
}
/* Efecto de brillo al pasar el mouse */
.card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
transform: translateX(-100%);
transition: transform 0.6s;
}
.card:hover::before {
transform: translateX(100%);
}
.card:hover {
transform: translateY(-5px);
border-color: rgba(255, 255, 255, 0.15);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
/* Variaciones de color para VR y AR */
.card.vr:hover { box-shadow: 0 15px 30px rgba(0, 242, 254, 0.05); }
.card.ar:hover { box-shadow: 0 15px 30px rgba(79, 172, 254, 0.05); }
.badge {
display: inline-block;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 2px;
padding: 0.25rem 0.75rem;
border-radius: 20px;
margin-bottom: 1.5rem;
font-weight: 600;
width: fit-content;
}
.vr .badge {
background: rgba(0, 242, 254, 0.1);
color: var(--accent-vr);
border: 1px solid rgba(0, 242, 254, 0.2);
}
.ar .badge {
background: rgba(79, 172, 254, 0.1);
color: var(--accent-ar);
border: 1px solid rgba(79, 172, 254, 0.2);
}
.card h2 {
font-size: 1.75rem;
font-weight: 400;
margin-bottom: 1rem;
letter-spacing: 1px;
}
.card p {
color: var(--text-muted);
font-size: 0.95rem;
margin-bottom: 2.5rem;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.8rem 1.5rem;
border-radius: 8px;
text-decoration: none;
font-weight: 500;
font-size: 0.9rem;
letter-spacing: 1px;
transition: all 0.3s ease;
}
.vr .btn {
background: transparent;
color: #fff;
border: 1px solid var(--accent-vr);
}
.vr .btn:hover {
background: var(--accent-vr);
color: #000;
box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}
.ar .btn {
background: transparent;
color: #fff;
border: 1px solid var(--accent-ar);
}
.ar .btn:hover {
background: var(--accent-ar);
color: #000;
box-shadow: 0 0 15px rgba(79, 172, 254, 0.4);
}
footer {
text-align: center;
padding: 5rem 2rem 2rem;
color: rgba(255, 255, 255, 0.2);
font-size: 0.8rem;
letter-spacing: 1px;
}
/* Animación de entrada */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.grid {
animation: fadeIn 1s ease out;
}
</style>
</head>
<body>
<header>
<h1>XR Experiences</h1>
<p>Explorando los límites de la realidad a través del diseño inmersivo e interactivo.</p>
</header>
<main class="container">
<div class="grid">
<article class="card vr">
<div>
<span class="badge">Virtual Reality</span>
<h2>VR Test Project</h2>
<p>Una experiencia de realidad virtual interactiva diseñada para web (WebXR). Explora entornos tridimensionales y mecánicas inmersivas directamente desde tu navegador o visor VR.</p>
</div>
<a href="https://istec-for340.github.io/VRTest/" target="_blank" class="btn">Lanzar Experiencia →</a>
</article>
<article class="card ar">
<div>
<span class="badge">Augmented Reality</span>
<h2>Bello AR</h2>
<p>Proyecto de realidad aumentada web que fusiona elementos digitales con el entorno real. Abre la cámara de tu dispositivo para interactuar con el contenido optimizado para AR.</p>
</div>
<a href="https://istec-for340.github.io/Bello_AR/" target="_blank" class="btn">Abrir Cámara AR →</a>
</article>
</div>
</main>
<footer>
<p>© For340 2026 ISTEC.</p>
</footer>
</body>
</html>