-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (56 loc) · 1.96 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>gacha-page</title>
<link rel="icon" href="icon.jpg" >
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="script1.js"></script>
</head>
<body>
<amp-auto-ads type="adsense"
data-ad-client="ca-pub-1510712101527214">
</amp-auto-ads>
<div id="splash">
<div id="splash_text"></div>
<!--/splash--></div>
<div id="container">
<!--/container--></div>
<header>
<h1>ガチャガチャの簡単なシミュレーションWEBサイト</h1>
</header>
<main>
<div class="container">
<div class="icon-container">
<img src="icon.jpg" alt="アイコン画像">
</div>
<button id="spin-button" onclick="startSpin()", class="button">ガチャを回す</button>
<div id="result-container"></div>
</div>
<div id="result-container">
<h2>ガチャ結果</h2>
<div id="result"></div>
</div>
<div id="probability">
<h3>ガチャの概要</h3>
<div id="probability2" >
<p> 「ガチャを回す」をクリックするとガチャ結果に画像が表示されます。</p>
<p> 画像をクリックすると拡大表示されます。</p>
</div>
<h3>排出率</h3>
<div id="probability">
<p>R 80% </p>
<p>SR 19% </p>
<p>SSR 1% </p>
</div>
</div>
</main>
<footer>
<a href="https://twitter.com" >Twitter</a>
<p>© 2023 YOUR NAME</p>
</footer>
</body>
</body>
</html>