-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
index.html
68 lines (60 loc) · 3.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charSet="utf-8"/>
<meta name="language" content="english"/>
<meta http-equiv="content-type" content="text/html"/>
<meta name="author" content="lo-th"/>
<meta name="designer" content="lo-th"/>
<meta name="publisher" content="lo-th"/>
<title>PHY</title>
<meta name="description" content="Physics engine for three.js"/>
<meta name="keywords" content="Physics,Ammo,Physx,Oimo,Digital Artist,Visual Artist,Creative Developer,Real Time,Creative Coding,Javascript,ThreeJS,Three.js"/>
<meta name="robots" content="index"/>
<meta name="distribution" content="web"/>
<meta property="og:title" content="PHY"/>
<meta property="og:type" content="site"/>
<meta property="og:url" content="https://lo-th.github.io/phy/"/>
<meta property="og:image" content="https://lo-th.github.io/phy/assets/textures/logo_4.png"/>
<meta property="og:site_name" content="Physics engine for three.js"/>
<meta property="og:description" content="Creative developer and visual artist working with real-time physics engines"/>
<link rel="apple-touch-icon" href="./assets/icons/apple-touch-icon.png"/>
<link rel="apple-touch-icon" sizes="16x16" href="./assets/icons/favicon-16x16.png"/>
<link rel="apple-touch-icon" sizes="32x32" href="./assets/icons/favicon-32x32.png"/>
<link rel="apple-touch-icon" sizes="180x180" href="./assets/icons/apple-touch-icon.png"/>
<link rel="manifest" href="./manifest.json"/>
<link rel="mask-icon" color="#000000" href="./assets/icons/safari-pinned-tab.svg"/>
<link rel="apple-touch-startup-image" href="./assets/icons/startup.png"/>
<!--<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">-->
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1.0"/>
<meta name="theme-color" content="#000"/>
<link rel="shortcut icon" href="favicon.ico">
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:site" content="@3dflashlo"/>
<meta name="twitter:creator" content="@3dflashlo"/>
<meta property="og:url" content="https://lo-th.github.io/phy/"/>
<meta name="twitter:title" content="Physics engine for three.js"/>
<meta name="twitter:description" content="Creative developer and visual artist working with real-time physics engines"/>
<meta name="twitter:image" content="https://lo-th.github.io/phy/assets/icons/share_twitter.jpg"/>
<!--
<link rel="preload" href="/assets/fonts/Mulish-700-Bold.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/assets/fonts/Mulish-500-Medium.woff2" as="font" type="font/woff2" crossorigin>
<meta name="sharedArrayBuffer" description="using cross-orgiin-isolation in the web browser">
<meta http-equiv="Pragma" content="no-cache">
-->
<link rel="stylesheet" href="index.css">
</head>
<body style="background-color:#000; margin:0; padding:0; overflow:hidden;">
<script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
<script type="importmap">{ "imports": {
"three": "./src/libs/three.module.js",
"three/addons/": "./src/jsm/",
"three/nodes": "./src/jsm/nodes/Nodes.js",
"tween": "./src/libs/tween.esm.js"
}}</script>
<script type="module">
import { Main } from './src/Main.js'
Main.start()
</script>
</body>
</html>