-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 1.55 KB
/
Copy pathindex.html
File metadata and controls
54 lines (53 loc) · 1.55 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Slideshow interativo com morfologia líquida usando Three.js e GSAP"
/>
<title>[threejs/gsap] Liquid Morphology by ❍ NORDIC STUDIO</title>
<link
rel="stylesheet"
href="https://public.codepenassets.com/css/normalize-5.0.0.min.css"
/>
</head>
<body>
<main
class="slider-wrapper"
role="application"
aria-label="Slideshow interativo morfologia liquida"
>
<canvas
class="webgl-canvas"
role="img"
aria-label="visualização 3d do slide atual"
></canvas>
<output
class="slide-number"
id="slideNumber"
aria-label="Numero do slide atual"
>01</output
>
<output class="slide-total" id="slideTotal" aria-label="Total de slides"
>06</output
>
<aside
class="help-text"
role="complementary"
aria-label="instrução de navegação"
>
<kbd>H</kbd>: Alternar Configurações • <kbd>Espaço </kbd>/<kbd>→</kbd>:
Próximo • <kbd>←</kbd>: Anterior • Clique para Avançar
</aside>
<nav
class="slides-navigation"
id="slidesNav"
aria-label="Navegação entre slides"
></nav>
</main>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/gsap.min.js"></script>
<script type="module" src="/src/main.js"></script>
</body>
</html>