-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
183 lines (172 loc) · 7.54 KB
/
demo.html
File metadata and controls
183 lines (172 loc) · 7.54 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Municipal Software Group</title>
<meta name="viewport" , content="width=device-width, initial-scale=1" />
<meta name="author" content="Collin Brittain" />
<meta name="description" content />
<link rel="stylesheet" href="/styles/reset.css" />
<link rel="stylesheet" href="/styles/common.css" />
<link rel="stylesheet" href="/styles/fonts.css" />
<link rel="stylesheet" href="/styles/header.css">
<link rel="stylesheet" href="/styles/burger.css" />
<link rel="stylesheet" href="/styles/demo-default.css" />
<link rel="stylesheet" href="/styles/demo-480.css" />
<link rel="stylesheet" href="/styles/demo-992.css" />
<link rel="stylesheet" href="/styles/demo-1200.css" />
<link rel="stylesheet" href="/styles/footer.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="/js/toggleMenu.js"></script>
<script src="/js/closeMenu.js"></script>
<script src="/js/onload.js"></script>
<script src="/js/demo.js"></script>
</head>
<body>
<a id="top"></a>
<header>
<iframe src="/header.html" onload="this.insertAdjacentHTML('afterend', (this.contentDocument.body||this.contentDocument).innerHTML);this.remove()" hidden></iframe>
</header>
<div id="wrapper">
<p id="current-slide" hidden>0</p>
<div id="launchpad-title-container">
<div id="launchpad-title-inner">
<!-- <div class="back-home f-x-small"><a href="/" style="color: white"><   Home</a></div>-->
<div id="launchpad-title-content" class="open-sans-bold f-x-large">
Demo Slideshow
</div>
</div>
</div>
<div id="launchpad-content-container">
<div id="launchpad-content-inner">
<div id="table-of-contents-container" class="open-sans f-medium">
<div id="table-of-contents-header" class="open-sans-bold f-medium">
Table of Contents
</div>
<ul id="table-of-contents" class="f-small">
<li id="toc1">Case Management</li>
<li id="toc2">
Searching for Records
</li>
<li id="toc3">Red Alerts</li>
<li id="toc4">Tables</li>
<li id="toc5">Documents</li>
<li id="toc6">Payments</li>
<li id="toc7">Forms and Reports</li>
</ul>
</div>
<div id="instructions" class="open-sans f-small">
<p style="display: inline">
Welcome to our software demonstration.
</p>
<br /><br />
<p>
The demo is a slideshow that walks through some of
the most important functions available to our users.
</p>
<br />
<p>
You can skip to a specific section using the Table
of Contents, or start from the beginning by clicking
the button below.
</p>
<br />
<p>
If you are an existing user, we recommend visiting
the <a href="/learn">learning center</a> (under construction), and then
<a href="/#contact-section">contact us</a> if you do
not find an answer to your question.
</p>
<div id="start-button-container">
<div id="start-button" class="open-sans-bold f-large" onclick="startDemo()">
<p>Start Demo</p>
</div>
</div>
</div>
</div>
</div>
<div id="dark-overlay"></div>
<div id="demo-container" onclick="checkClose(event)">
<div id="demo-container-inner">
<div id="toc-navigation">
<div class="top-corner"></div>
<div id="toc-controls">
<span id="c1" class="tc-control">
<p>Case Management</p>
</span>
<span id="c2" class="tc-control">
<p>Search</p>
</span>
<span id="c3" class="tc-control">
<p>Red Alerts</p>
</span>
<span id="c4" class="tc-control">
<p>Tables</p>
</span>
<span id="c5" class="tc-control">
<p>Documents</p>
</span>
<span id="c6" class="tc-control">
<p>Payments</p>
</span>
<span id="c7" class="tc-control">
<p>Forms and Reports</p>
</span>
</div>
<div class="top-corner">
<div id="top-bar" onclick="hideDemo()">
<div class="close-demo-x"></div>
<div class="close-demo-x"></div>
</div>
</div>
</div>
<div id="display">
<div id="prev" class="nav-arrow" onclick="prevSlide()">
<div id="prev-arrow"></div>
</div>
<div id="slide-area">
<div id="form-title-overlay" class="open-sans f-medium"></div>
<div id="slide-container">
<img id="slide" src="/images/slides/0.png" />
</div>
<div id="slide-commentary"><p id="commentary-content" class="open-sans f-medium"></p></div>
<div id="finish-button" onclick="hideDemo()">Finish</div>
</div>
<div id="next" class="nav-arrow" onclick="nextSlide()">
<div id="next-arrow"></div>
</div>
</div>
<div id="bottom-bar">
<p id="slide-number"></p>
</div>
</div>
</div>
</div>
<script>
// Assign proper slide indeces to ToC and nav bar buttons.
loadNavigation();
// Keyboard demo navigation
window.addEventListener("keydown", function(e) {
if (!e) {
e = window.event;
} // for old IE compatible
var keycode = e.keyCode || e.which; // also for cross-browser compatible
switch (keycode) {
// Left
case 37:
prevSlide();
break;
// Right
case 39:
nextSlide();
break;
// Escape
case 27:
hideDemo();
}
});
</script>
</body>
<footer>
</footer>
</html>