-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodalTest.html
More file actions
94 lines (86 loc) · 3.58 KB
/
modalTest.html
File metadata and controls
94 lines (86 loc) · 3.58 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
<!--=======================================-->
<!-- popUp.html -->
<!-- Twitter Bootstrap popup example. -->
<!--=======================================-->
<html>
<head>
<title> popUp Example </title>
<!--
************************************************************
*
* Bootstrap files are located in same directory as
* this HTML file.
*
* Alternatively, you can use the CDN link to these
* plugins instead of using local Bootstrap files.
*
************************************************************
-->
<link href="bootstrap_3.2.0/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
margin: 0;
background: url("http://s25.postimg.org/vy9kcjptb/canstockphoto1451483.jpg");
background-size: 1440px 800px;
background-repeat:no-repeat;
}
</style>
</head>
<body>
<!-- Button trigger modal -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
Launch demo modal
</button>
<!-- Pop Up -->
<div class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
<span aria-hidden="true">×</span>
<span class="sr-only">Close</span>
</button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>
This application was developed by Alan, Felicia, Ramin, and Karlina
at the AngelHack hackathon in Silicon Valley (2014).
</p>
<p>
<a href="http://www.hackathon.io/sympha">
<img src="http://postimg.org/image/gycmayjjf/" alt="AngelHack Logo" class="img-rounded">
</a>
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal"> Close </button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
<span aria-hidden="true">×</span>
<span class="sr-only">Close</span>
</button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
<!-- Include JQuery for Bootstrap's JavaScript plugins. -->
<script src="https://code.jquery.com/jquery.js"></script>
<!-- Include Bootstrap JavaScript plugins. -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>