-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpandaforest.html
executable file
·247 lines (199 loc) · 7.45 KB
/
pandaforest.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>旅するパンダ</title>
<link rel="icon" href="img/panda.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap" rel="stylesheet">
</head>
<body>
<header class="header_together">
<img id="savepanda" src="img/savepanda.png">
<img id="panda_title" src="img/title.png">
</header>
<main>
<!-- オーディオ -->
<audio src="bgm/angry.mp3" id="play-button"></audio>
<audio src="bgm/shine.mp3" id="play-button0"></audio>
<audio src="bgm/pokan.mp3" id="play-button1"></audio>
<audio src="bgm/puyon.mp3" id="play-button2"></audio>
<!-- メインコンテンツ -->
<div id="content">
<p id="score"></p>
<div id="result">
<img id="food" src="img/panda_slide.gif" alt="food">
</div>
<p id="step">パンダの運命は?</p>
<!-- ライフゲージ
<div id="life-frame">
<div id="life-bar"></div>
<div id="life-mark"></div>
</div> -->
<!-- <div id="btns-wrap">
<div id="increase-btn" onclick="alterLife( 10 )">+</div>
<div id="decrease-btn" onclick="alterLife( -10 )">-</div>
</div> -->
<div class="btn">
<div class="left">
<img id="eat" src="img/cheese.png">
</div>
<div class="right">
<img id="run" src="img/print.png">
</div>
</div>
</div>
<!-- 勝利画面 -->
<div id="win" style="display: none;">
<!-- <iframe type="text/html" width="950" height="550"
src="https://www.youtube.com/embed/3j9F6ZK0Qwo?autoplay=1&mute=1&loop=1&list=PLj0D5aSP7hfrVqLFIQkLHn_lWJCegwQ7P"></iframe>
<script type=" text/javascript" async src="https://tenor.com/embed.js"></script> -->
<video src="video/congratulations.mp4" loop autoplay muted></video>
<div class="win_lost">
<p>おめでとうございます!<br>
パンダが森から脱出!</p>
</div>
<div class="flame">
<a div class="btn_panda" href="mountainrule.html">次へ</a>
<a class="link_font" href="pandaforest.html">もう一回遊ぶ</a>
</div>
</div>
<!-- 敗北画面 -->
<div id="lose" style="display: none;">
<!-- <iframe type="text/html" width="950" height="550"
src="https://www.youtube.com/embed/xHzm-Y4ywsA?autoplay=1&mute=1&loop=1&list=PLj0D5aSP7hfo_rV66Xn1-kkXlZr5jh5Bo"></iframe> -->
<video src="video/endgame.mp4" loop autoplay muted></video>
<p>残念!パンダが天に召された</p>
<div class="flame">
<a div class="btn_panda" href="mountainrule.html">次へ</a>
<a class="link_font" href="pandaforest.html">もう一回遊ぶ</a>
</div>
</div>
<div id="pandamove">
<marquee direction="right" scrollamount="8">
<img src="img/pandamove.png">
<img src="img/pandamove.png">
<img src="img/pandamove.png">
</marquee>
</div>
</main>
<footer>
<small>Panda in the Forest</small>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
$("#test").hide();
$("#content").show();
var point = 5;
$("#score").text("パンダの体力:" + point)
console.log()
//食べる選択をしたら
$("#eat").on("click", function () {
const random_eat = Math.floor(Math.random() * 4);
// console.log(random_eat)
if (random_eat === 0) {
$("#step").text("HP-5");
$("#play-button").get(0).play();
$("#score").text("パンダの体力:" + (point -= 5));
$('#food').attr("src", "img/bear.png");
// point -= 50;
console.log(point)
} else if (random_eat === 1) {
$("#step").text("HP-2");
$("#score").text("パンダの体力:" + (point -= 2));
$('#food').attr("src", "img/apple.png");
$("#play-button1").get(0).play();
// point -= 2;
} else if (random_eat === 2) {
$("#step").text("HP+1");
$("#score").text("パンダの体力:" + (point += 1));
$('#food').attr("src", "img/pear.png");
$("#play-button2").get(0).play();
// point += 1;
} else {
$("#step").text("HP+2");
$("#score").text("パンダの体力:" + (point += 2));
$('#food').attr("src", "img/bamboo.png");
$("#play-button2").get(0).play();
// point += 2;
}
if (point <= 3) { //ピンチ判定
$("#score").css("color", "red");
}
if (point >= 4) { //回復判定
$("#score").css("color", "black");
}
if (point <= 0) { //負け判定
$("#lose").show();
$("#content").hide();
$("#play-button").get(0).play();
}
if (point >= 10) { //勝ち判定
$("#win").show();
$("#content").hide();
$("#play-button0").get(0).play();
}
});
// 歩く選択したら▶︎減点される / +1点
$("#run").on("click", function () {
const random_run = Math.floor(Math.random() * 2);
// console.log(random_run)
if (random_run === 0) {
$("#step").text("HP-1");
$("#score").text("パンダの体力:" + (point -= 1));
$("#food").attr("src", "img/panda_run1.gif");
$("#play-button1").get(0).play();
console.log(point)
} else {
$("#step").text("HP+1");
$("#score").text("パンダの体力:" + (point += 1));
$("#food").attr("src", "img/panda_run2.gif");
$("#play-button2").get(0).play();
}
if (point <= 3) { //ピンチ判定
$("#score").css("color", "red");
}
if (point >= 4) { //回復判定
$("#score").css("color", "black");
}
if (point <= 0) { //負け判定
$("#lose").show();
$("#content").hide();
$("#play-button").get(0).play();
}
if (point >= 10) { //勝ち判定
$("#win").show();
$("#content").hide();
$("#play-button0").get(0).play();
}
});
function come(divID, speed, x) //左から移動する関数。
{
x += speed;
scrollOBJ = document.all[divID].style;
scrollOBJ.left = x; //オブジェクト移動。
scrollOBJ.visibility = "visible"; //表示させる。
scrollOBJ.filter = "FlipH()"; //左右反転。
startPos = document.body.clientWidth; //スタート位置取得。
if (x != startPos) setTimeout("come('" + divID + "'," + speed + "," + x + ")", sec) //スタート位置まで再帰処理。
else ComeGoStart(divID, speed); //スタート位置ならば関数ComeGoStartへ(最初から)。
}
function ComeGoStart(divID, speed) {
if ((!document.all && document.getElementById) || document.layers) //ネスケは表示するだけ。
{
if (document.layers) nnOBJ = document.layers[divID];
if (document.getElementById) nnOBJ = document.getElementById(divID).style;
nnOBJ.visibility = "visible";
}
else //IEは関数goooへ。
{
startPos = document.body.clientWidth; //スタート位置取得。
setTimeout("gooo('" + divID + "'," + speed + "," + startPos + ")", sec);
}
}
</script>
</body>
</html>