-
Notifications
You must be signed in to change notification settings - Fork 0
/
tutorial3.html
189 lines (173 loc) · 4.39 KB
/
tutorial3.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<style>
@font-face {
font-family: mozart;
src: url(./resource/mozart.ttf);
}
body {
font-family: mozart;
margin: 0px;
cursor: default;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#shop {
position: relative;
min-width: 100%;
min-height: 100%;
text-align:center;
}
.item {
text-align: center;
}
.img {
position: relative;
width: 32px;
height: 32px;
display:inline-block;
}
.prompt{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor:default;
background-color: #c8d3da;/*c0c8d6*/
}
.prm{
position: absolute;
top:32px;
left: 32px;
right: 32px;
margin-bottom: 32px;
}
.rpp{
cursor: pointer;
position: relative;
margin: 12px;
}
.tl{
position: absolute;
left:-11px;
top:-11px;
background-image:url(imgs/TL.png);
background-size: 12px 12px;
width: 12px;
height: 12px;
}
.tr{
position: absolute;
right:-11px;
top:-11px;
background-image:url(imgs/TR.png);
background-size: 12px 12px;
width: 12px;
height: 12px;
}
.bl{
position: absolute;
left:-11px;
bottom:-11px;
background-image:url(imgs/BL.png);
background-size: 12px 12px;
width: 12px;
height: 12px;
}
.br{
position: absolute;
right:-11px;
bottom:-11px;
background-image:url(imgs/BR.png);
background-size: 12px 12px;
width: 12px;
height: 12px;
}
.left{
position: absolute;
left:-11px;
top:0px;
height: 100%;
width:8px;
border: solid;
border-color: #c0c8d6;/*c0c8d6*/
border-width:0 0 0 4px;
background-color: #c8d3da;/*c0c8d6*/
}
.bottom{
position: absolute;
left:0px;
bottom:-11px;
width: 100%;
height:8px;
border: solid;
border-color: #c0c8d6;/*c0c8d6*/
border-width:0 0 4px 0;
background-color: #c8d3da;/*c0c8d6*/
}
.right{
position: absolute;
top:0px;
right:-11px;
height: 100%;
width: 8px;
border: solid;
border-color: #cddde9;/*c0c8d6*/
border-width:0 4px 0 0;
background-color: #c8d3da;/*c0c8d6*/
}
.top{
position: absolute;
left:0px;
top:-11px;
width: 100%;
height:8px;
border: solid;
border-color: #cddde9;/*c0c8d6*/
border-width:4px 0 0 0;
background-color: #c8d3da;/*c0c8d6*/
}
.cont{
padding: 1px;
}
.background{
width: 100%;
height: 110%;
position: fixed;
border: 0px;
}
a{
color: black;
}
.big{
font-size: 32px;
}
#hider{
position: fixed;
top:0px;
left:0px;
width: 100%;
height: 100%;
background-color: #000000;
z-index: 10;
}
</style>
<iframe src="menu.html" class = "background"></iframe>
<div id="shop">
<div class="prompt prm"><div class="top"></div><div class="left"></div><div class="bottom"></div><div class="right"></div><div class="tl"></div><div class="tr"></div><div class="bl"></div><div class="br"></div><div class="cont big">
Along the way Archie can collect power ups to help him on his journey and coins that can be used to upgrade power ups, find new environments for Archie to climb in, or help Archie change his skin to new colors.
<br><br><div class="prompt rpp" id = "rpp"><div class="top"></div><div class="left"></div><div class="bottom"></div><div class="right"></div><div class="tl"></div><div class="tr"></div><div class="bl"></div><div class="br"></div><div class="cont">Play<div class="conten"></div></div></div></div></div>
</div>
<div id="hider"> </div>
<script src="js/tutorial3.js"></script>
</body>
</html>