-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (115 loc) · 4.1 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="js/jquery-2.1.3.min.js"></script>
<link rel="stylesheet" href="css/sample.css" />
<link rel="icon" href="img/aiko.jpg" id="favicon" />
<title>じゃんけん</title>
</head>
<body>
<!-- 音の設定 -->
<audio id="audio">
<source src="audio/pon.mp3" type="audio/mp3" />
</audio>
<header>
<h3>Rock Paper Scissors</h3>
</header>
<main>
<h2>あなたはなにを出しますか?</h2>
<ul>
<li id="gu_btn"><img src="img/jg.png" alt="" /></li>
<li id="cho_btn"><img src="img/jc.png" alt="" /></li>
<li id="par_btn"><img src="img/jp.png" alt="" /></li>
</ul>
<div class="cp">
<div class="ca">
<h2>コンピュータの出した手は?</h2>
<div id="pc_hands"></div>
</div>
</div>
<div class="a">
<h2>結果は、、、</h2>
<div id="judgment"></div>
</div>
</main>
<footer>
<h6>©️ G's ACADEMY</h6>
</footer>
<script>
// 音が鳴るJS
$("#gu_btn").on("click", function audio() {
document.getElementById("audio").currentTime = 0; //連続クリックに対応
document.getElementById("audio").play(); //クリックしたら音を再生
});
$("#par_btn").on("click", function audio() {
document.getElementById("audio").currentTime = 0; //連続クリックに対応
document.getElementById("audio").play(); //クリックしたら音を再生
});
$("#cho_btn").on("click", function audio() {
document.getElementById("audio").currentTime = 0; //連続クリックに対応
document.getElementById("audio").play(); //クリックしたら音を再生
});
//じゃんけん用のSCRIPTを書いてください
$("#gu_btn").on("click", function () {
const r = Math.ceil(Math.random() * 3);
console.log(r);
if (r == 1) {
$("#judgment").html('<img src="img/aiko.jpg" >');
} else if (r == 2) {
$("#judgment").html('<img src="img/kachi.avif" >');
} else if (r == 3) {
$("#judgment").html('<img src="img/make.webp" >');
}
if (r == 1) {
$("#pc_hands").html('<img src="img/jg.png" >');
} else if (r == 2) {
$("#pc_hands").html('<img src="img/jc.png" >');
} else if (r == 3) {
$("#pc_hands").html('<img src="img/jp.png" >');
}
});
// グローバル変数とブロック変数に気をつける
$("#cho_btn").on("click", function () {
const r = Math.ceil(Math.random() * 3);
console.log(r);
if (r == 1) {
$("#judgment").html('<img src="img/aiko.jpg" >');
} else if (r == 2) {
$("#judgment").html('<img src="img/kachi.avif" >');
} else if (r == 3) {
$("#judgment").html('<img src="img/make.webp" >');
}
if (r == 1) {
$("#pc_hands").html('<img src="img/jc.png" >');
} else if (r == 2) {
$("#pc_hands").html('<img src="img/jp.png" >');
} else if (r == 3) {
$("#pc_hands").html('<img src="img/jg.png" >');
}
});
$("#par_btn").on("click", function () {
const r = Math.ceil(Math.random() * 3);
console.log(r);
if (r == 1) {
$("#judgment").html('<img src="img/aiko.jpg" >');
} else if (r == 2) {
$("#judgment").html('<img src="img/kachi.avif" >');
} else if (r == 3) {
$("#judgment").html('<img src="img/make.webp" >');
}
if (r == 1) {
$("#pc_hands").html('<img src="img/jp.png" >');
} else if (r == 2) {
$("#pc_hands").html('<img src="img/jg.png" >');
} else if (r == 3) {
$("#pc_hands").html('<img src="img/jc.png" >');
}
});
// アラートの練習を表示
// \はoptionと¥
alert("10月17日(木)\n本日もよろしくお願いします!!");
</script>
</body>
</html>