-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscore.html
More file actions
80 lines (74 loc) · 2.07 KB
/
score.html
File metadata and controls
80 lines (74 loc) · 2.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>8-Puzzle Game</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<script src="http://code.jquery.com/jquery-3.3.1.min.js"></script>
<link href="scoreCSS.css" rel="stylesheet">
</head>
<body>
<div id="wrap">
<header>
<h2><a href="index.html">8-Puzzle Game</a></h2>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="game.html">Play</a></li>
<li><a href="score.html">Score</a></li>
</ul>
</nav>
</header>
<section class="home">
<div class="background" >
<div class="paper">
<h1></h1>
</div>
</div>
<side>
<div class="pictures">
<div class="picture">
<img src="dog2.jpg">
<p>시바견</p>
</div>
<div class="picture">
<img src="dog.jpg">
<p>허스키</p>
</div>
<div class="picture">
<img src="tajo.jpg">
<p>타조</p>
</div>
<div class="picture">
<img src="squarrel.jpg">
<p>다람쥐</p>
</div>
<div class="picture">
<img src="cat.jpg">
<p>고양이</p>
</div>
<div class="picture">
<img src="tiger.jpg">
<P>호랑이</P>
</div>
</side>
</section>
</div>
<script>
$(document).ready(function() {
resizeContent();
});
$(window).resize(function() {
resizeContent();
});
function resizeContent() {
var windowHeight = $(window).height();
var headerHeight = $("header").height();
$('.home').css({'height':(windowHeight-headerHeight)+'px'});
}
</script>
<script type="text/javascript" src="scoreJS.js"></script>
</body>
</html>