-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (25 loc) · 932 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Bootstrapped Photo Grid</title>
<!-- jQuery -->
<script src="./js/jquery-1.12.4.min.js"></script>
<script src="./jquery-ui-1.12/jquery-ui.min.js"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="./bootstrap-3.3.7/css/bootstrap.min.css">
<script src="./bootstrap-3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/Grid-Generator-min.css">
<script type="text/javascript" src="js/Grid-Generator-min.js"></script>
</head>
<body style="margin: 0px;">
<div class="picture-grid-here" style="height: 100%; width: 100%;"></div>
<script type="text/javascript">
// TODO - Speed up init delay
// TODO - Figure out how to place in background
$(document).ready(function() {
// To treat as background set z-index of selector to -1
generateGrid($(".picture-grid-here"));
}); // end $(document).ready()
</script>
</body>
</html>