-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (64 loc) · 1.72 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
<!DOCTYPE html>
<html style="background-color:white;"><head>
<title> Animate </title>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("#hide").click(function(){
$("#div1").hide();
});
$("#show").click(function(){
$("#div1").show();
});
$("#hide2").click(function(){
$("#div2").hide();
});
$("#show2").click(function(){
$("#div2").show();
});
});
</script>
<style type="text/css">
.word{
color: #000000;
font-family: fantasy;
font-size: 50px;
}
</style>
</head>
<body bgcolor="#303030" background="https://media2.giphy.com/media/Cv7wrQjYcd6hO/giphy.webp?cid=ecf05e47cbn73x3wwy1car750qi1p3te26zcu9gszjrv7b7p&rid=giphy.webp" style="margin: 50px">
<font face="Arial" color="#000000" size="6"><h1 align="center"> Animate </h1> </font>
<h2>
<b>被捲入勇者召喚世界卻發現異世界很和平</b>
</h2>
<h2>
<p></p>
</h2>
<h3>
"作為勇者被召喚到異世界,等等已經和平了?"
<p></p>
</h3>
<img src="https://truth.bahamut.com.tw/s01/201710/cd882b5241ea801395ccb1370b898b7f.JPG" align="left" height="1000" width="800">
<p></p>
</div>
<h2>
可愛到爆的冥王
<div id="div1" style="display: none;">
<img src="https://i.imgur.com/KHdcuPA.jpg" align="left" height="700" width="600"></div>
<p>
</p>
<button id="hide">隱藏</button>
<button id="show">顯示</button>
</h2>
<h2>
惹人憐愛的死王
<div id="div2" style="display: none;">
<img src="https://i.imgur.com/CwAwrcL.png" align="left" height="700" width="800"></div>
<p>
</p>
<button id="hide2">隱藏</button>
<button id="show2">顯示</button>
</h2>
</body></html>