-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
54 lines (54 loc) · 2.65 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
<html>
<head>
<title>Digital Bacon UI</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#ffebfd"/>
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicons/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicons/favicon-32x32.png">
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="./examples/scripts/index.js" defer></script>
</head>
<body>
<div id="sidebar" class="sidebar">
<h1>DigitalBacon-UI</h1>
<div class="sidebar-list">
<a class="github-link" href="https://github.com/kalegd/DigitalBacon-UI"><i class="fa fa-github" style="font-size:28px; padding-right: 12px;"></i>Github Repo</a>
<h2>UI Examples</h2>
<ul>
<li href="./examples/ui-alignment">Alignment</li>
<li href="./examples/ui-backgrounds">Backgrounds</li>
<li href="./examples/ui-borders">Borders</li>
<li href="./examples/ui-buttons">Buttons</li>
<li href="./examples/ui-hsl-color">HSL Color Input</li>
<li href="./examples/ui-images">Images</li>
<li href="./examples/ui-inputs">Input Buttons and Range</li>
<li href="./examples/ui-instanced">Instanced Components</li>
<li href="./examples/ui-spacing">Margins and Padding</li>
<li href="./examples/ui-select">Select</li>
<li href="./examples/ui-text-area">Text Area</li>
<li href="./examples/ui-number-text-inputs">Text And Number Inputs</li>
</ul>
<h2>Interactable Examples</h2>
<ul>
<li href="./examples/pointer-interactables">Pointer Interactables</li>
<li href="./examples/grip-interactables">Grip Interactables</li>
<li href="./examples/touch-interactables">Touch Interactables</li>
</ul>
<h2>More Examples</h2>
<ul>
<li href="./examples/language-selection">Language Selection</li>
<li href="./examples/spotify">Spotify Player</li>
</ul>
</div>
</div>
<div id="iframe-parent">
<button id="sidebar-slider-button">></button>
<iframe id="viewer" name="viewer" allow="fullscreen; xr-spatial-tracking;" src="./iframe-default"></iframe>
</div>
<a class="hidden" id="example-code-link" href="https://github.com/kalegd/DigitalBacon-UI/blob/main">
<img src="./examples/images/ic_code_black_24dp.svg">
</a>
</body>
</html>