-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script src="galleria/galleria.js"></script>
</head>
<body>
here I will proclaim my proclamations
<div id="gallery">
<img src="/hawtest.png" alt="some state" title="Some state. not optimized.">
<img src="/hawtest01.png">
<img src="/hawtest02.png">
<img src="/hawtest03.png">
<img src="/hawtest04.png">
<img src="/hawtest05.png">
<img src="/hawtest06.png">
<img src="/hawtest07.png">
<img src="/hawtest08.png">
<img src="/hawtest09.png">
<img src="/hawtest10.png">
<img src="/hawtest11.png">
<img src="/hawtest12.png">
<img src="/hawtest13.png">
<img src="/hawtest14.png">
<img src="/hawtest15.png">
<img src="/hawtest16.png">
<img src="/hawtest17.png">
<img src="/hawtest18.png" alt="another state" title="rather optimized.">
</div>
<script>
Galleria.loadTheme('galleria/themes/classic/galleria.classic.js');
$("#gallery").galleria({
width: 683,
height: 384,
transition: 'fade'
});
</script>
</body>