-
Notifications
You must be signed in to change notification settings - Fork 0
/
tutorial.html
187 lines (173 loc) · 4.48 KB
/
tutorial.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
<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">
Archie the chameleon had always wanted to see the world from a bird's eye view but had always been afraid to leave the forest floor because he had never been very good at blending in with his environment. However, he decided to take his chances and climb as high as he could while trying out new colors on the way!
<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">Next<div class="conten"></div></div></div></div></div>
</div>
<div id="hider"> </div>
<script src="js/tutorial.js"></script>
</body>
</html>