-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (23 loc) · 961 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Kevin.J.Alwell</title>
<meta name="description" content="Kevin resume">
<script src="https://aframe.io/releases/0.6.0/aframe.min.js"></script>
</head>
<body>
<a-scene>
<a-assets>
<a-asset-item id="obj" src="./test.obj"></a-asset-item>
<a-asset-item id="mtl" src="./test.obj.mtl"></a-asset-item>
<img id="resume" src="./resume.png">
</a-assets>
<a-entity scale="3.5 3.5 3.5" width="4" height="8" id="inventor-model" position="3 .5 -7" rotation="0 0 0" obj-model="obj: #obj; mtl: #mtl">
<a-animation repeat="indefinite" repeat="indefinite" attribute="rotation" from="0 0 0" to="0 360 0" dur="10000"></a-animation>
</a-entity>
<a-plane position="-2 1.5 -3.5" rotation="0 20 0" width="4" height="5" src="#resume"></a-plane>
<a-sky color="#ECECEC"></a-sky>
</a-scene>
</body>
</html>