forked from manifestinteractive/teleprompter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (82 loc) · 3.9 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>TelePrompter</title>
<meta name="author" content="Peter Schmalfeldt">
<meta name="description" content="HTML5, CSS3 & Javascript Based TelePrompter">
<meta name="keywords" content="TelePrompter, HTML, HTML5, CSS, CSS3, Javascript">
<!-- Mobile Specific Meta Tags -->
<meta name="viewport" content="width=1024, initial-scale=1, maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.10.3/themes/redmond/jquery-ui.css" />
<link rel="stylesheet" href="css/style.css?v=0.6.1">
<link rel="stylesheet" href="css/font-awesome.min.css">
</head>
<body id="gui">
<header>
<h1><i class="icon icon-bullhorn"></i> <span class="clock">00:00:00</span></h1>
<nav>
<div class="buttons">
<a class="button small icon-undo reset" href="#" onclick="return false;"></a>
<a class="button small icon-text-width flipx" href="#" onclick="return false;"></a>
<a class="button small icon-text-height flipy" href="#" onclick="return false;"></a>
<a class="button icon-play play active" href="#" onclick="return false;"></a>
</div>
<div class="sliders">
<label class="font_size_label">Font Size <span>(60)</span>: <div class="font_size slider"></div></label><br>
<label class="speed_label">Speed <span>(35)</span>: <div class="speed slider"></div></label>
</div>
<div class="colors">
<input id="text-color-picker" class="color {hash:true,caps:true,valueElement:'text-color'}"><input type="hidden" id="text-color" value="#ffffff">
<input id="background-color-picker" class="color {hash:true,caps:true,valueElement:'background-color'}"><input type="hidden" id="background-color" value="#141414">
</div>
</nav>
</header>
<article>
<div class="overlay">
<div class="top"></div>
<div class="bottom"></div>
</div>
<div class="teleprompter" id="teleprompter" contenteditable>
Oh, hello there. I did not see you come in. I was to busy reading off this TelePrompter. It does some pretty cool things, for example:
<br><br>
You can edit the text right on the page. It'll even save it for you if you happen to leave the page. That's some smart thinking.
<br><br>
If you're using an iPad, you can add a shortcut to your home screen for full screen awesomeness.
<br><br>
You can also use some handy keyboard shortcuts to speed things up. You can adjust the speed & font size at the top right as well. We're also experimenting with ways to flip the text around for you fancy folks using mirrors.
<br><br>
The keyboard shortcuts are as follows:
<br><br>
Up: Increases Font Size
<br><br>
Down: Decreases Font Size
<br><br>
Left: Slows Down Teleprompter
<br><br>
Right: Speeds Up Teleprompter
<br><br>
Space: Starts / Stops Teleprompter
<br><br>
Escape: Resets Everything
<br><br>
Finally, we also made an effort to make sure your text will be easy to read. So if you are pasting text from a word document, we'll do some cleaning up to make the breaks flow more easily.
<br><br>
Thanks for Stopping by.
</div>
<i class="icon-play marker"></i>
</article>
<footer>
</footer>
<script src="https://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script src="js/jquery.timer.js"></script>
<script src="js/jquery.cookie.js"></script>
<script src="js/jscolor.js"></script>
<script src="js/script.js?v=0.6.2"></script>
</body>
</html>