forked from higashi000/tng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (84 loc) · 2.89 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=10.0, user-scalable=yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<!--ネイティブアプリぽっくできる -->
<meta name="description" content="指定時間で体を動かして、高得点を狙おう!">
<meta name="keywords" content="">
<title>DYNAMIC DANCE</title>
<link rel="apple-touch-icon" href="">
<!--iPhoneのホーム画面のicon-->
<link rel="stylesheet" href="https://use.typekit.net/ttl7tba.css">
<!--Adobefont-->
<script type="text/javascript" src=""></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="jquery.fademover.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(function () {
var h = $(window).height();
$('#wrap').css('display', 'none');
$('#loader-bg ,#loader').height(h).css('display', 'block');
});
$(window).load(function () { //全ての読み込みが完了したら実行
$('#loader-bg').delay(900).fadeOut(800);
$('#loader').delay(600).fadeOut(300);
$('#wrap').css('display', 'block');
});
$(function () {
$('body').fadeMover();
});
//10秒たったら強制的にロード画面を非表示
$(function () {
setTimeout('stopload()', 10000);
});
function stopload() {
$('#wrap').css('display', 'block');
$('#loader-bg').delay(900).fadeOut(800);
$('#loader').delay(600).fadeOut(300);
}
function nextpage() {
location.href = "./account/index.html"
}
</script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="loading-bg">
<div id="loader">
<img src="./img/loading.gif" width="700" height="700" alt="Now Loading...">
</div>
</div>
<div id="wrap">
<div id="top">
<h1 class="top_1">DYNAMIC</h1>
<h1 class="top_2">DANSE</h1>
</div>
<div class="parent">
<!--親-->
<span class="circle">
<div id="parrot"></div>
</span>
</div>
<div id="bts">
<div class="stage">
<input type="button" class="bt" value="NEXT!" onclick="nextpage()">
</div>
</div>
</div>
<script>
var randomList = new Array(
"https://cultofthepartyparrot.com/parrots/hd/parrot.gif",
"https://cultofthepartyparrot.com/parrots/hd/parrotnotfound.gif",
"https://cultofthepartyparrot.com/parrots/hd/60fpsparrot.gif",
"https://cultofthepartyparrot.com/parrots/hd/confusedparrot.gif");
var num = Math.floor(Math.random() * randomList.length);
var printHtml = '<img src=' + randomList[num] + ' alt="ランダム画像">';
var parrot = document.getElementById("parrot");
parrot.innerHTML = printHtml;
</script>
</body>
</html>