-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (48 loc) · 1.21 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
55
56
57
58
59
60
61
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- disable zooming -->
<meta name="viewport" content="initial-scale=1.0, user-scalable=0" />
<title>Example For A1, part three</title>
<link rel="stylesheet" href="includes/style.css" media="screen" />
<style media="screen">
.container {
width: 75%;
height: 500px;
border: 1px solid #CCC;
margin: 0 auto 60px;
position: relative;
overflow: visible;
transform-style: preserve-3d;
}
.panel {
width: 192px;
height: 192px;
position: absolute;
opacity: 0.7;
border: 4px solid black;
font-size: 24px;
font-weight: bold;
color: white;
text-align: center;
background: red;
transform-style: preserve-3d;
}
.image {
background-color: transparent;
background-size: cover;
opacity: 1.0;
}
</style>
</head>
<body>
<h1><center>Simple Character for A1, part two</center></h1>
<div id="my-character" class="container">
</div>
<h1><center>Example For A1, part three</center></h1>
<div id="my-scene" class="container">
</div>
<script type="module" src="js/app.js"></script>
</body>
</html>