-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (57 loc) · 1.87 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
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Unsplash API</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="hero-slides">
<div id="header">
<div id="logo"></div>
<div id="menu">
<div id="hamburger">
<div class="slice"></div>
<div class="slice"></div>
<div class="slice"></div>
</div>
</div>
</div>
<div id="slides-cont">
<div class="button" id="next"></div>
<div class="button" id="prev"></div>
<div id="slides" >
<div class="slide">
<div class="number">#FFF</div>
<div class="body">
<div class="location">Sichuan, China</div>
<div class="headline">Photo by ioslide</div><a href="https://github.com/ioslide" target="_blank"></a>
<div class="link">View on github</div></a>
</div>
</div>
</div>
<div id="next-catch"></div>
<div id="prev-catch"></div>
</div>
<div id="footer">
<div id="dribbble"></div></div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.26.0/polyfill.min.js'></script>
<script src="js/index.js"></script>
<script src='js/jquery.min.js'></script>
<script src='js/jquery.masonry.js'></script>
<script src='js/imagesloaded.pkgd.js'></script>
<script src="js/api.js"></script>
<script>
$('#unsplash').unsplash({
client_id:'a5c3e64883065517960c707683193051657192036756285a6f41338710e2822e',
limit:20,
columns:3,
width:1280
});
</script>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='https://rawgithub.com/desandro/masonry/v2.1.08/jquery.masonry.js'></script>
<script src='https://imagesloaded.desandro.com/imagesloaded.pkgd.js'></script>
</body>
</html>