-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
41 lines (41 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="" />
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable = no" />
<meta name="theme-color" content="#6B6AB3">
<meta property="og:title" content="Hand Pose Simulator" />
<meta property="og:description" content="Small experiment using Blender's armature/skeleton feature mixed with Three.JS to animate a simple hand" />
<meta property="og:url" content="https://hand-armature.vercel.app/" />
<meta property="og:image" content="/og.jpg" />
<meta name="twitter:title" content="Hand Pose Simulator"/>
<meta name="twitter:description" content="Small experiment using Blender's armature/skeleton feature mixed with Three.JS to animate a simple hand"/>
<meta name="twitter:site" content="https://hand-armature.vercel.app/"/>
<meta name="twitter:image" content="/twitter.jpg"/>
<meta name="twitter:creator" content="@kirilbt"/>
<title>Hand Pose Simulator</title>
</head>
<body>
<canvas class="webgl"></canvas>
<button id="screenshot" type="button">Save Image</button>
<div class="poses">
<button id="raised-hand" type="button">Raised Hand</button>
<button id="raised-finger" type="button">Raised Finger</button>
<button id="rock-on" type="button">Rock On</button>
<button id="peace" type="button">Peace</button>
<button id="hang-loose" type="button">Hang Loose</button>
<button id="fu" type="button">FU !!!!</button>
<button id="vulcan-salute" type="button">Vulcan Salute</button>
</div>
<div id="pane"></div>
<footer>
<div id="pane"></div>
<div class="designed-by">
Created by <a href="https://bento.me/kiril" target="_blank">kiril.ch</a>
</div>
</footer>
<script type="module" src="/main.js"></script>
</body>
</html>