-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
45 lines (27 loc) · 1.31 KB
/
example.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
<html>
<head>
<title>Dan's Gallery Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style src="gallery.css"></style>
</head>
<body>
<center>
<div class="row" id ="thumbCont">
<div class="col-sm-2" id="menuLeft">
</div>
<div class="expaindContainer">
<div class="col-sm-10" id="full">
<span onclick="this.parentElement.style.display='none'" class="closebtn">×</span>
<img id="expandedImg" style="max-width:100%;max-height:90vh;">
<div id="imgtext" id="imageTitle">
</div>
</div>
</div>
</div>
</center>
</body>
<script src="flickrGrab.js"></script>
</html>