forked from BakeryPanya/BakeryPanya.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdice1.html
More file actions
98 lines (75 loc) · 3.28 KB
/
dice1.html
File metadata and controls
98 lines (75 loc) · 3.28 KB
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
<!DOCTYPE html>
<html lang="ja" dir="ja">
<head>
<meta charset="utf-8">
<title>サイコロの旅ジェネレーター</title>
<link rel="stylesheet" href="./dice1.css">
</head>
<body>
<div class="hidden">
<h1 class="hid">サイコロの旅ジェネレーター</h1>
<p>スクショ前提で作成しています!</p>
<p>こっちはまだ調整中なので変でも許してね</p>
<p>-----------------------------------------------</p>
<div class="sai">
<p>サイコロを振ろう</p>
<img id = "koro" src="dice_img/1-1.png">
<input type="button" id = "btn10" value="サイコロ">
<div class="kazu">
<h1 id="kazu_detail">出た目的地は○○だ!</h1>
</div>
<a href="./index.html">印刷はこちらから</a>
</div>
<section class="dice">
<div class="title_html">
<h3 class = "where"id="where">こっから→ここまで</h3>
<h1 class="title" id="trip">サイコロの旅</h1>
<h2 class="value" id="num">第三弾!!</h2>
</div>
<div class="one">
<img src="dice_img/1-1.png" alt="1の目">
<h1 id="one_detail" >やまと号</h1>
</div>
<div class="two">
<img src="dice_img/2-2.png" alt="2の目">
<h1 id="two_detail">フローラ号</h1>
</div>
<div class="three">
<img src="dice_img/3-3.png" alt="3の目">
<h1 id="three_detail">シリウス号</h1>
</div>
<div class="four">
<img src="dice_img/4-4.png" alt="4の目">
<h1 id="four_detail">ブルーメッツ号</h1>
</div>
<div class="five">
<img src="dice_img/5-5.png" alt="5の目">
<h1 id="five_detail">ニューブリーズ号</h1>
</div>
<div class="six">
<img src="dice_img/6-6.png" alt="6の目">
<h1 id="six_detail">はかた号</h1>
</div>
<div class="text">
<p><input type="text" id="text_one" value="やまと号">
<input type="button" id = "btn1" value="1の目変更"></p>
<p><input type="text" id="text_two" value="フローラ号">
<input type="button" id = "btn2" value="2の目変更"></p>
<p><input type="text" id="text_three" value="シリウス号">
<input type="button" id = "btn3" value="3の目変更"></p>
<p><input type="text" id="text_four" value="ブルーメッツ号">
<input type="button" id = "btn4" value="4の目変更"></p>
<p><input type="text" id="text_five" value="ニューブリーズ号">
<input type="button" id = "btn5" value="5の目変更"></p>
<p><input type="text" id="text_six" value="はかた号">
<input type="button" id = "btn6" value="6の目変更"></p>
<p><input type="text" id="doko" value="こっから→ここまで">
<input type="button" id = "btn7" value="行き先変更"></p>
<p><input type="text" id="di" value="サイコロの旅">
<input type="button" id = "btn8" value="タイトル"></p>
<p><input type="text" id="dan" value="第三弾!!">
<input type="button" id = "btn9" value="第何弾"></p>
</div>
<script src="./dice.js"></script>
</body>
</html>