-
Notifications
You must be signed in to change notification settings - Fork 0
/
angkor_wat_temple.html
52 lines (46 loc) · 1.77 KB
/
angkor_wat_temple.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
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/bottom_menu.css">
<script src="https://aframe.io/releases/0.7.1/aframe.min.js"></script>
<script src="https://jeromeetienne.github.io/AR.js/aframe/build/aframe-ar.js"></script>
<script src="https://rawgit.com/donmccurdy/aframe-extras/master/dist/aframe-extras.loaders.min.js"></script>
</head>
<body style="margin: 0; overflow: hidden;">
<div id="bottom_menu">
<a href="liberty.html">
<img src="./images/icons/liberty.png" class="planet_item liberty" alt="" />
</a>
<a href="sydney_opera.html">
<img src="./images/icons/sydney.png" class="planet_item sydney" alt="" />
</a>
<a href="vianden_castle.html">
<img src="./images/icons/castle1.png" class="planet_item castle" alt="" />
</a>
<a href="colosseum.html">
<img src="./images/icons/colosseum.png" class="planet_item colosseum" alt="" />
</a>
<a href="tian_tan_buddha.html">
<img src="./images/icons/tian-tan.png" class="planet_item tian-tan" alt="" />
</a>
<a href="angkor_wat_temple.html">
<img src="./images/icons/temple1.png" class="planet_item temple" alt="" />
</a>
</div>
<a-scene embedded vr-mode-ui="enabled: false;" arjs="debugUIEnabled: false;">
<a-marker id="marker" preset="custom" type="pattern" url="markers/angkor_wat_temple/Angkor_Wat.patt">
<a-entity gltf-model="url(./models/angkor_wat_temple/scene.gltf)" scale="0.05 0.05 0.05">
</a-entity>
<a-text value="IT19159768" position="3.6 -2 0"> </a-text>
<a-image
src="./images/info-boards/angkor.png"
position="4.5 0 0"
width="2px"
height="3px"
>
</a-image>
</a-marker>
<a-entity camera></a-entity>
</a-scene>
</body>
</html>