-
Notifications
You must be signed in to change notification settings - Fork 0
/
scavenger-hunt-trash.php
53 lines (52 loc) · 2.79 KB
/
scavenger-hunt-trash.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
<!DOCTYPE html>
<html>
<head>
<title>TrashMap - Scavenger Hunt</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="layout.css">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page" id="scavenger-hunt-trash">
<div data-role="header" data-position="fixed">
<h1>Scavenger Hunt</h1>
<a data-role="button" data-icon="delete" onclick="$.mobile.changePage( 'game-mode-trash.php', { transition: 'pop' } )">Quit</a>
<a data-role="button" onclick="$.mobile.changePage( 'scavenger-hunt-rules.php', { transition: 'none' } )">Rules</a>
</div>
<div data-role="content" class="clue-container">
<b>CLUE ONE</b>: Find the tallest tower in the area.
<a href="#next-clue-popup1" id="next-clue-button1" data-rel="popup" data-role="button" data-transition="pop">Next Clue</a>
</div>
<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#" id="trash-toggle" class="ui-btn-active ui-state-persist">Trash</a></li>
<li><a href="#warning-toggle-popup" id="recycling-toggle" data-rel="popup">Recycling</a></li>
</ul>
</div>
</div>
<div data-role="popup" id="warning-toggle-popup" data-overlay-theme="a" data-theme="c" style="max-width:400px;" class="ui-corner-all">
<div data-role="header" data-theme="a" class="ui-corner-top">
<h1>Warning</h1>
</div>
<div data-role="content" data-theme="d" class="ui-corner-bottom ui-content">
<p>Toggling modes will start a new game. Are you sure?</p>
<a href="#" onClick="$.mobile.changePage( 'scavenger-hunt-recycling.php', { transition: 'none' } )" data-role="button" data-theme="b">Start New Game</a>
<a href="#" data-role="button" onClick="$('#trash-toggle').trigger('click');" data-rel="back" data-theme="a">Don't Start New Game</a>
</div>
</div>
<div data-role="popup" id="next-clue-popup1" data-overlay-theme="a" data-theme="c" style="max-width:400px;" class="ui-corner-all">
<div data-role="header" data-theme="a" class="ui-corner-top">
<h1>Congrats!</h1>
</div>
<div data-role="content" data-theme="d" class="ui-corner-bottom ui-content">
<p>You found the next clue! You are one step closer to your target. Click 'Continue' to continue.</p>
<a data-prefetch="true" onClick="$.mobile.changePage( 'scavenger-hunt-clue2-trash.php', { transition: 'none' } );" data-role="button" data-transition="flow" data-theme="b">Continue</a>
<a href="#" data-rel="back" data-role="button">Cancel</a>
</div>
</div>
</div>
</body>
</html>