generated from codrops/CodropsTemplate
-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
executable file
·40 lines (38 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Typing Effects with Three.js | Demo 1</title>
<meta name="description" content="Interactive typable 3D text with Three.js" />
<meta name="keywords" content="type, typography, typable, text, three.js, webgl, javascript" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="css/base.css" />
<script>document.documentElement.className="js";var supportsCssVars=function(){var e,t=document.createElement("style");return t.innerHTML="root: { --tmp-var: bold; }",document.head.appendChild(t),e=!!(window.CSS&&window.CSS.supports&&window.CSS.supports("font-weight","var(--tmp-var)")),t.parentNode.removeChild(t),e};supportsCssVars()||alert("Please view this demo in a modern browser that supports CSS Variables.");</script>
</head>
<body class="demo-1">
<main>
<div class="frame">
<h1 class="frame__title">Typing Effects with Three.js</h1>
<nav class="frame__links">
<a href="http://tympanus.net/Development/UnrevealEffects/">Previous demo</a>
<a href="https://tympanus.net/codrops/?p=65590">Article</a>
<a href="https://github.com/uuuulala/WebGL-typing-tutorial">GitHub</a>
</nav>
<nav class="frame__demos">
<a href="index.html" class="frame__demo frame__demo--current">Clouds Effect ☁️</a>
<a href="02_bubbles.html" class="frame__demo">Bubbles Effect 🫧</a>
<a href="03_flowers.html" class="frame__demo">Flowers Effect 🌸</a>
<a href="04_eyes.html" class="frame__demo">Eyes Effect 👀</a>
</nav>
</div>
<div class="content">
<div id="text-input" contenteditable="true" onblur="this.focus()" autofocus>
</div>
<div class="container"></div>
</div>
</main>
<script src="js/01_clouds.js" type="module"></script>
</body>
</html>