-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
113 lines (101 loc) · 3.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>しゅうごのホームページ</title>
<meta name="description" content="An interactive getting started guide for Brackets.">
<link rel="stylesheet" href="main.css">
<script src="jquery-1.11.2.min.js"></script>
<style>
#tamago {
position: absolute;
right: 120px;
top: 80px;
}
#sukurannburueggu {
position: absolute;
right: 480px;
top: -20px;
}
#nama {
position: absolute;
right: 550px;
top: 150px;
}
.tekisuto {
position: absolute;
right: 90px;
top: 120px;
}
.dragon2,
.dragon1,
.dragon3 {
position: absolute;
display: none;
}
</style>
</head>
<body>
<img src="image/Untitled.png" alt="" width="600">
<div id="tamago">
<a href="javascript:;" id="botann">
<img class="dragon2" src="image/dragon2.png" alt="">
<img src="image/pic_index.png" alt="" width="200" id="img">
</a>
<div class="tekisuto">ゲーム
</div>
</div>
<div id="sukurannburueggu">
<a href="javascript:;" id="suitti">
<img class="dragon1" src="image/dragon1.png" alt="">
<img src="image/pic_index.png" alt="" width="200" id="imezi2">
</a>
<div class="tekisuto">本</div>
</div>
<div id="nama">
<a href="javascript:;" id="botann2">
<img class="dragon3" src="image/dragon3.png" alt="">
<img src="image/pic_index.png" alt="" width="200" id="imezi3">
</a>
<div class="tekisuto">パラパラマンガ</div>
</div>
<script>
$().ready(function () {
$("#botann").click(function () {
$("#tamago").animate({
top: "400px"
}, 1000, function () {
$("#img").delay(1000).attr("src", "image/wareta_tamago.png");
$('.dragon2').css('display', 'inline');
setTimeout(function () {
window.location = "game.html"
}, 1000);
});
});
$("#suitti").click(function () {
$("#sukurannburueggu").animate({
top: "400px"
}, 1000, function () {
$("#imezi2").delay(1000).attr("src", "image/wareta_tamago.png");
$('.dragon1').css('display', 'inline');
setTimeout(function () {
window.location = "honn.html";
}, 1000);
});
});
$("#botann2").click(function () {
$("#nama").animate({
top: "400px"
}, 1000, function () {
$("#imezi3").delay(1000).attr("src", "image/wareta_tamago.png");
$('.dragon3').css('display', 'inline');
setTimeout(function () {
window.location = "paraparama.html";
}, 1000);
});
});
});
</script>
</body>
</html>