-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainremote.html
More file actions
41 lines (38 loc) · 2.01 KB
/
Copy pathmainremote.html
File metadata and controls
41 lines (38 loc) · 2.01 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
<!DOCTYPE html>
<!--to do:
1: Make large and small screenshots
2: correctly link the respective screenshots
3: Write out the actual steps for each action
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/lightbox.css">
<link href='http://fonts.googleapis.com/css?family=Cabin+Condensed' rel='stylesheet' type='text/css'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="javascript/lightbox-2.6.min.js"></script>
<script src="javascript/jquery.scrollTo-1.4.3.1-min.js"></script>
<script src="javascript/jquery.localscroll-1.2.7-min.js"></script>
<script src="javascript/tutorial.js"></script>
</head>
<body>
<div id="top_menu" class="center">
<!-- This div has the buttons, that when clicked show the content (the rendered HTML) of the tutorial
Two things to note: first, these elements have a class of "showContent" this
is important for my jQuery commands and second, is the data-os="something" attribute.
Whatever is in this data attribute is passed onto the server via my ajax call, and used by the php script.
Now go to 'javascript/tutorial.js' and scroll to the part of the file that says "$(document).ready( function()" -->
<button class="showContent" data-os="7" data-tut='remote'>Windows 7</button>
<button class="showContent" data-os="8" data-tut='remote'>Windows 8</button>
<button class="showContent" data-os="mac" data-tut='remote'>Mac OS</button>
<button id="Hshot">hide Screen</button>
</div>
<!-- This div isn't Implemented -->
<div id="bottom_menu">
<button>PDF Download</button>
<button>Video Tutorial</button>
</div>
<div id="info_container">
</div>
</body>
</html>