-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (31 loc) · 945 Bytes
/
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">
<title>Getting Started</title>
<script src="./dist/bundle.js"></script>
</head>
<body style="margin: 0px; padding: 0px;">
<div>
<logo-3d
id="logo-3d-example-id"
glb-url="./public/logo.glb"
rotation-speed="0.01"
camera-frustum="0.414"
camera-position="0 0.3 1.5"
camera-rotation="-0.2 0 0"
ambient-light-color="#eeeeee"
ambient-light-intensity="0.1"
directional-light-color="#eeeeee"
directional-light-intensity="1"
style="width: 1024px; height: 1024px;"
></logo-3d>
</div>
<script>
var logo3d = document.getElementById('logo-3d-example-id');
logo3d.addEventListener('ready', function() {
console.log('Logo is Ready');
});
</script>
</body>
</html>