forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (69 loc) · 3 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LD2Studio Editor</title>
<link rel="shortcut icon" href="files/favicon_white.ico" media="(prefers-color-scheme: dark)"/>
<link rel="shortcut icon" href="files/favicon.ico" media="(prefers-color-scheme: light)" />
<link rel="stylesheet" type="text/css" href="files/main.css">
</head>
<body class="home">
<div id="panel">
<div id="header">
<h1><span translate="no">LD2Studio Three.js </span> <a id="version" href="http://github.com/mrdoob/three.js/releases">r169</a></h1>
<div id="expandButton"></div>
</div>
<div id="panelScrim"></div>
<div id="contentWrapper">
<div id="content">
<h2>Learn</h2>
<ul>
<li><a href="docs/index.html#manual/introduction/Creating-a-scene">documentation</a></li>
<li><a href="examples/#webgl_animation_keyframes">examples</a></li>
<li><a href="editor/">editor</a></li>
<li><a href="https://chat.openai.com/g/g-jGjqAMvED-three-js-mentor">gpt</a></li>
</ul>
<h2>Community</h2>
<ul>
<li><a href="https://stackoverflow.com/questions/tagged/three.js">questions</a></li>
<li><a href="https://discord.gg/56GBJwAnUS">discord</a></li>
<li><a href="https://discourse.threejs.org/">forum</a></li>
<li><a href="https://twitter.com/threejs">twitter</a></li>
</ul>
<h2>Code</h2>
<ul>
<li><a href="https://github.com/LD2Studio/LD2Studio-Editor">github</a></li>
<li><a href="">download</a></li>
</ul>
<h2>Resources Three.js</h2>
<ul>
<li><a href="manual/#en/fundamentals" target="_blank" rel="noopener">Three.js Fundamentals</a></li>
<li><a href="https://threejs-journey.xyz/" target="_blank" rel="noopener">Three.js Journey</a></li>
<li><a href="https://www.packtpub.com/product/learn-threejs-fourth-edition/9781803233871" target="_blank" rel="noopener">Learn Three.js</a></li>
<li><a href="https://www.amazon.co.jp/初めてのThree-js-第2版-_WebGLのためのJavaScript-3Dライブラリ-Dirksen/dp/4873117704/" target="_blank" rel="noopener">初めてのThree.js</a></li>
</ul>
<h2>Merch</h2>
<ul>
<li><a href="https://teespring.com/stores/threejs-store" target="_blank" rel="noopener">T-Shirts</a></li>
</ul>
</div>
</div>
</div>
<script>
var panel = document.getElementById( 'panel' );
var expandButton = document.getElementById( 'expandButton' );
var panelScrim = document.getElementById( 'panelScrim' );
expandButton.addEventListener( 'click', function ( event ) {
panel.classList.toggle( 'open' );
event.preventDefault();
} );
panelScrim.onclick = function ( event ) {
event.preventDefault();
panel.classList.toggle( 'open' );
};
</script>
<div id="viewer">
</div>
</body>
</html>