This repository was archived by the owner on Mar 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodal.php
More file actions
executable file
·84 lines (78 loc) · 5.33 KB
/
modal.php
File metadata and controls
executable file
·84 lines (78 loc) · 5.33 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
<div>
<div id="reveal">
<!-- Triggers the modals -->
<a href="#" data-reveal-id="aboutModal" class="radius button medium-6 columns">About the Computer Basics Class…</a>
<a href="#" data-reveal-id="courseModal" class="radius button medium-6 columns">Course Syllabus Beginner…</a>
<a href="#" data-reveal-id="vidModal" class="radius button medium-6 columns">Tree House Video Demo…</a>
<a href="#" data-reveal-id="listPrintModal" class="radius button medium-6 columns">Supplies | Equip. List…</a>
<a href="#" data-reveal-id="extraModal" class="radius button">Modal in a modal…</a>
<a href="#" data-reveal-id="extra2Modal" class="radius button">Example Modal with Video…</a>
</div>
</div>
<div>
<!-- Begin Video Modal -->
<div id="aboutModal" class="reveal-modal" data-reveal>
<h3>What is a computer?</h3>
<div>
<iframe src="https://www.youtube.com/embed/7cXEOWAStq4?feature=player_embedded" allowfullscreen></iframe>
</div>
<a class="close-reveal-modal">×</a>
</div>
<div id="courseModal" class="reveal-modal" data-reveal>
<h3>Internet Basics</h3>
<div>
<iframe src="https://www.youtube.com/embed/FxirRVJWUTs?feature=player_embedded" allowfullscreen></iframe>
</div>
<a class="close-reveal-modal">×</a>
</div>
<div id="vidModal" class="reveal-modal" data-reveal>
<h3>Operating Systems</h3>
<div>
<iframe src="https://www.youtube.com/embed/pTdSs8kQqSA?feature=player_embedded" allowfullscreen></iframe>
</div>
<a class="close-reveal-modal">×</a>
</div>
<div id="listPrintModal" class="reveal-modal" data-reveal>
<h3>Email Basics</h3>
<div>
<iframe src="https://www.youtube.com/embed/pTdSs8kQqSA?feature=player_embedded" allowfullscreen></iframe>
<p><a href="#" data-reveal-id="secondModal" class="secondary button"><i class="fi-anchor"></i>Email Basics</a>
<a class="close-reveal-modal">×</a>
</div>
<div id="secondModal" class="reveal-modal" data-reveal aria-labelledby="secondModalTitle" aria-hidden="true" role="dialog">
<h2 id="secondModalTitle">Email Basics Two.</h2>
<i class="fi-social-windows"></i>
<p class="lead">Most software applications have many similarities, such as, email and MS Word. Learn how to create your own gmail or yahoo account and add an email manager so you can create or modify an email offline.</p>
<p>Writing an email is similar to creating a MS Word document. It has the same basic foundations, just some different commands and features, but you will find that understanding the similarities will enable you to learn a new software application a lot quicker and it will no longer be intimidating. </p>
<div>
<iframe src="https://www.youtube.com/embed/pTdSs8kQqSA?feature=player_embedded" allowfullscreen></iframe>
<p><a href="#" data-reveal-id="secondModal" class="secondary button"><i class="fi-anchor"></i>Software Basics</a>
<a class="close-reveal-modal" aria-label="Close">×</a>
</p>
</div>
</div>
<!-- Reveal Modals end -->
</div>
<!-- Triggers the modals -->
<!-- Reveal Modals begin -->
<div id="firstModal" class="reveal-modal" data-reveal aria-labelledby="firstModalTitle" aria-hidden="true" role="dialog">
<h2 id="firstModalTitle">This is a modal.</h2>
<p>Reveal makes these very easy to summon and dismiss. The close button is simply an anchor with a unicode character icon and a class of <code>close-reveal-modal</code>. Clicking anywhere outside the modal will also dismiss it.</p>
<p>Finally, if your modal summons another Reveal modal, the plugin will handle that for you gracefully.</p>
<p><a href="#" data-reveal-id="secondModal" class="secondary button">Second Modal...</a>
</p>
<a class="close-reveal-modal" aria-label="Close">×</a>
</div>
<div id="secondModal" class="reveal-modal" data-reveal aria-labelledby="secondModalTitle" aria-hidden="true" role="dialog">
<h2 id="secondModalTitle">This is a second modal.</h2>
<p>See? It just slides into place after the other first modal. Very handy when you need subsequent dialogs, or when a modal option impacts or requires another decision.</p>
<a class="close-reveal-modal" aria-label="Close">×</a>
</div>
<div id="videoModal" class="reveal-modal large" data-reveal aria-labelledby="videoModalTitle" aria-hidden="true" role="dialog">
<h2 id="videoModalTitle">This modal has video</h2>
<div class="flex-video widescreen vimeo">
<iframe width="1280" height="720" src="//www.youtube-nocookie.com/embed/wnXCopXXblE?rel=0" frameborder="0" allowfullscreen></iframe>
</div>
<a class="close-reveal-modal" aria-label="Close">×</a>
</div>
<!-- Reveal Modals end -->