forked from davidfaure/3d-text-circle-animation-codrops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>3D Text Circle Animation | Codrops</title>
<meta
name="description"
content="Demo for the tutorial on how to create a 3D text animation using Three.js and Shaders and a bit of trigonometry to make it look like a circle."
/>
<meta name="keywords" content="3D Text, Animation, WebGL, Three.js" />
<meta name="author" content="David Faure for Codrops" />
<link rel="shortcut icon" href="./favicon.ico" />
<link rel="stylesheet" type="text/css" href="/src/style.css" />
<script>
document.documentElement.className = "js";
</script>
</head>
<body>
<main>
<header class="frame">
<h1 class="frame__title">
3D Text Circle Animation by
<a href="http://davidfaure.eu/" target="_blank">David Faure</a>
</h1>
<a class="frame__back" href="https://tympanus.net/codrops/?p=86085"
>Article</a
>
<a class="frame__archive" href="https://tympanus.net/codrops/demos/"
>All demos</a
>
<a class="frame__github" href="https://github.com/davidfaure/3d-text-circle-animation-codrops">GitHub</a>
<nav class="frame__tags">
<a href="https://tympanus.net/codrops/demos/?tag=3d">#3D</a>
<a href="https://tympanus.net/codrops/demos/?tag=three-js"
>#three.js</a
>
<a href="https://tympanus.net/codrops/demos/?tag=typography">#typography</a>
</nav>
</header>
<div id="app">
<div class="container">
<div class="wrapper"></div>
</div>
</div>
<canvas id="webgl"></canvas>
<script type="module" src="/src/main.js"></script>
</main>
</body>
</html>