-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
91 lines (85 loc) · 2.61 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Example - SS Masonry Gallery</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta http-equiv="cache-control" content="public">
<meta http-equiv="expires" content="2592000">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="dist/ssMasonryGallery.css">
<style type="text/css">
/*reset*/
html{
font-size: 11px;
width: 100%;
overflow-x: hidden;
}
@media (min-width: 600px){
html{
font-size: 12px;
}
}
@media (min-width: 992px){
html{
font-size: 14px;
}
}
body{
margin: 0;
overflow-x: hidden;
}
img{
max-width: 100%;
}
.container {
width: 95%;
max-width: 1300px;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="container">
<div id="ss-masonry">
<img src="src/img/1c99.jpg" />
<img src="src/img/6e1d.jpg" />
<img src="src/img/16.jpg" />
<img src="src/img/20.jpg" />
<img src="src/img/abomination-final.jpg" />
<img src="src/img/ACB.jpg" />
<video muted loop controls data-caption="This is a video"><source src="src/img/moments18.mp4" type="video/mp4"></video>
<img src="src/img/ao-background04.jpg" />
<img src="src/img/Cityscape_by_kerembeyit.jpg" />
<img src="src/img/Daemons.jpg" data-caption="Here comes the demons!" />
<img src="src/img/dente8.jpg" />
<img src="src/img/dente20.jpg" />
<img src="src/img/dente29.jpg" />
<img src="src/img/forza.jpg" />
<img src="src/img/God-of-War-3.jpg" />
<img src="src/img/templar.jpg" />
</div>
<p>Photos copyrights belong to their respective title owners</p>
</div>
<!-- <div id="ssMasonryGallery-projector" class="active">
<div class="title-bar">
<p class="ssMasonryGallery-caption">4/12 - Here comes the demons!</p>
<ul class="right">
<li><button type="button" id="ssMasonryGallery-left"><i class="material-icons">chevron_left</i></button></li>
<li><button type="button" id="ssMasonryGallery-right"><i class="material-icons">chevron_right</i></button></li>
<li><button type="button" id="ssMasonryGallery-close"><i class="material-icons">close</i></button></li>
</ul>
</div>
<div class="img-cont">
<img src="src/img/Daemons.jpg">
</div>
</div> -->
<script src="src/jquery-3.3.1.min.js"></script>
<script src="dist/ssMasonryGallery.js"></script>
<script>
$(window).on('load', function(){
$('#ss-masonry').ssMasonryGallery();
});
</script>
</body>
</html>