-
Notifications
You must be signed in to change notification settings - Fork 34
/
demo.html
38 lines (37 loc) · 1.34 KB
/
demo.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
<!DOCTYPE html>
<html>
<head>
<title>Balanced Gallery Demo</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript" src="jquery.balanced-gallery.js"></script>
<style type="text/css">
html, body {
font-family: helvetica, arial, sans-serif;
height: 100%;
padding: 0;
margin: 0;
}
</style>
<script type="text/javascript">
$(window).load(function () {
$('body').BalancedGallery({ /* options */ });
});
</script>
</head>
<body>
<img src="http://placekitten.com/335/283" style="padding: 10px; margin: 5px" />
<img src="http://placekitten.com/325/596" />
<img src="http://placekitten.com/580/365" />
<img src="http://placekitten.com/282/581" />
<img src="http://placekitten.com/503/319" />
<img src="http://placekitten.com/549/577" />
<img src="http://placekitten.com/355/493" />
<img src="http://placekitten.com/500/150" />
<img src="http://placekitten.com/360/529" />
<img src="http://placekitten.com/589/361" />
<img src="http://placekitten.com/452/462" />
<img src="http://placekitten.com/550/304" />
<img src="http://placekitten.com/352/204" />
<img src="http://placekitten.com/400/220" />
</body>
</html>