-
Notifications
You must be signed in to change notification settings - Fork 0
/
phycircuit.html
44 lines (33 loc) · 952 Bytes
/
phycircuit.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Web AR</title>
<meta name=" viewport" content="width=device-width,initial-scale=1.0">
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.js"></script>
<script nomodule src="https://unpkg.com/@google/model-viewer/dist/model-viewer-legacy.js"></script>
<style>
* {
margin: 0;
padding: 0;
}
body{
background-color: #17141d;
}
.demo {
height: 100vh;
width: 100%;
}
.demo model-viewer {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div class="demo">
<model-viewer id="model" src="electric_circuit.glb" auto-rotate camera-controls animation-name="Running"
autoplay ar>
</model-viewer>
</div>
</body>
</html>