forked from spite/THREE.MeshLine
-
Notifications
You must be signed in to change notification settings - Fork 4
/
spinner.html
28 lines (24 loc) · 943 Bytes
/
spinner.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Spinner demo</title>
<meta property="og:description" content="Spinner demo" />
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />
<link rel="stylesheet" href="css/main.css" />
<link
href="https://fonts.googleapis.com/css?family=Lato:400,700,700italic,400italic,300,300italic"
rel="stylesheet"
type="text/css"
/>
</head>
<body>
<div id="container"></div>
<p id="directions">Touch and drag to draw lines.<br />Try multiple fingers on mobile!</p>
</body>
<!-- Import maps polyfill -->
<!-- Remove this when import maps will be widely supported -->
<script async src="https://ga.jspm.io/npm:es-module-shims@1.6.3/dist/es-module-shims.js"></script>
<script src="../importmap.js" map="./importmap.html"></script>
<script type="module" src="js/main-spinner.js"></script>
</html>