forked from jonellwood/W3Cx_js.0x_pictureBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (39 loc) · 1.32 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Picture Album Browsertron 5000</title>
<link rel="stylesheet" href="css/main.css">
<script src="js/index.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/exif-js/2.3.0/exif.min.js"></script>
</head>
<body>
<header>
<h1>Welcome to Picture Browsertron 5000</h1>
</header>
<aside>
<h2>Albums</h2>
<ul>
<li id="selectedAlbum" data-idx="0">All</li>
<li data-idx="1">Animals</li>
<li data-idx="2">Nature</li>
<li data-idx="3">Space</li>
</ul>
</aside>
<div id="largeImage">
<div id="thumbBar">
<div id="scrollDiv"></div>
</div>
</div>
</body>
<!-- <button onclick="getGPS()">Click for GPS</button> -->
<script>
// document.getElementById("largeImage").onclick=function(){
// EXIF.getData(this, function() {
// myData = this;
// console.log(myData.exifdata);
// })
// }
</script>
</html>