This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
frabble.php
117 lines (105 loc) · 3.88 KB
/
frabble.php
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
114
115
116
117
<?php
require('functions.php');
?>
<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Frabble</title>
<link rel="stylesheet" href="stylesheets/normalize.css" />
<link rel="stylesheet" href="stylesheets/foundation.css" />
<link rel="stylesheet" href="stylesheets/style.css" />
<link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="frabble.js"></script>
<script src="javascript/vendor/custom.modernizr.js"></script>
</head>
<body>
<?php require('header.php'); ?>
<div class="row">
<div class="large-12 columns">
<div class="header">
<h1 class="logo">Fra<span>bble</span><span class="beta"> alpha</span></h1>
</div>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div class="block">
<h4 class="subheader">Guess the movie title</h4>
<a href="#" class="try right" id="start">Try another</a>
<ul class="large-block-grid-6 small-block-grid-3" id="imagelist">
<li><img src="http://placehold.it/100x100"/></li>
<li><img src="http://placehold.it/100x100"/></li>
<li><img src="http://placehold.it/100x100"/></li>
<li><img src="http://placehold.it/100x100"/></li>
<li><img src="http://placehold.it/100x100"/></li>
<li><img src="http://placehold.it/100x100"/></li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div class="block">
<h4 class="subheader">Your answer</h4>
<div class="row collapse">
<div class="small-10 columns">
<input id="myanswer" type="text" placeholder="Movie title...">
</div>
<div class="small-2 columns">
<a href="#" class="button prefix" id="answer">Guess</a>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div id="theanswer" class="block">
Loading
</div>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div class="block">
<h4 class="subheader">Need a hint?</h4>
<hr />
<ul class="icons small-block-grid-1 large-block-grid-2">
<li id="actor">
<strong>Staring:</strong>
<a href="#" id="actorhint" class="try">Reveal hint</a>
<span id="actorhintval" class="hidden"></span>
</li>
<li id="director">
<strong>Director:</strong>
<a href="#" id="directorhint" class="try">Reveal hint</a>
<span id="directorhintval" class="hidden"></span>
</li>
<li id="year">
<strong>Year:</strong>
<a href="#" id="yearhint" class="try">Reveal hint</a>
<span id="yearhintval" class="hidden"></span>
</li>
<li id="genre">
<strong>Genre:</strong>
<a href="#" id="genrehint" class="try">Reveal hint</a>
<span id="genrehintval" class="hidden"></span>
</li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div class="footer">Made by <a href="http://stormconsultancy.co.uk">Storm</a> & Friends at <a href="http://realworldstudios.com/">Real World Studios</a> as part of <a href="http://bathdigitalfestival.com">Bath Digital Festival</a>
</div>
</div>
</div>
<?php require('footer.php'); ?>
</body>
</html>