This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprototypes.html
42 lines (42 loc) · 1.59 KB
/
prototypes.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<title>Prototype Viewers - Three.js Object Viewer</title>
<link rel="stylesheet" href="./scss/main.scss">
</head>
<body>
<header>
<h1>Three.js Object Viewer</h1>
<nav>
<ul>
<li><a href="https://github.com/cdlib/threejs-viewer">GitHub page</a></li>
<li><a href="index.html">index page</a></li>
</ul>
</nav>
</header>
<div class="intro">
<template id="linkstemplate">
<li><a href=""></a> <a class="debuglink" href="" hidden>(debug view)</a></li>
</template>
<h2>Prototype Viewers</h2>
<h3>Current glTF Viewer (work in progress)</h3>
<p>Camera controller: <a href="https://github.com/yomotsu/camera-controls">camera-controls</a>.</p>
<p>Features: responsive layout, model loading progress and error status, fullscreen, light intensity, reset, and keyboard controls; "show me" and debug menus.</p>
<h4>Sample Objects</h4>
<ul id="currentviewerlinks">
</ul>
<h3>Initial glTF Viewer</h3>
<p>Camera controller: <a href="https://threejs.org/docs/#examples/en/controls/OrbitControls">OrbitControls</a>.</p>
<p>Features: responsive layout; fullscreen, light intensity, and reset controls.</p>
<h4>Sample Objects</h4>
<ul id="initialviewerlinks">
</ul>
<h3>The Basic Three.js Demo</h3>
<p>Features: responsive layout.</p>
<p>"<a href="hello.html">hello world</a>"</p>
</div>
<script src="./js/index.js"></script>
</body>
</html>