-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
65 lines (60 loc) · 2.13 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
59
60
61
62
63
64
65
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>jGallery v1.3 :: Demo</title>
<link rel="stylesheet" href="css/sample.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/jgallery.css" type="text/css" media="screen">
<script type="text/javascript" src="//code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="js/jgallery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.jGallery').jGallery();
});
</script>
</head>
<body>
<br />
<div id="content">
<h1>jGallery</h1>
<h2>Example</h2>
<div class="jGallery">
<a href="galeria/image-1.jpg"><img src="galeria/thumb-1.jpg" title="Imagem de Demo jGallery 1"/></a>
<a href="galeria/image-2.jpg"><img src="galeria/thumb-2.jpg" title="Imagem de Demo jGallery 2"/></a>
<a href="galeria/image-3.jpg"><img src="galeria/thumb-3.jpg" title="Imagem de Demo jGallery 3"/></a>
<a href="galeria/image-4.jpg"><img src="galeria/thumb-4.jpg" title="Imagem de Demo jGallery 4"/></a>
<a href="galeria/image-5.jpg"><img src="galeria/thumb-5.jpg" title="Imagem de Demo jGallery 5"/></a>
<a href="galeria/image-6.jpg"><img src="galeria/thumb-6.jpg" title="Imagem de Demo jGallery 6"/></a>
</div>
<h2>Code</h2>
<code lang="javascript"><pre>
$(document).ready(function(){
$('.jGallery').jGallery();
});
</pre>
</code>
<h3>Code Example 1</h3>
<code lang="javascript"><pre>
$(document).ready(function(){
$('.jGallery').jGallery({
jgBackgroundOpacity: 0.9
});
});
</pre>
</code>
<h3>Code Example 2</h3>
<code lang="javascript"><pre>
$(document).ready(function(){
$('.jGallery').jGallery({
jgBackgroundOpacity: 0.2,
jgImageMaxWidth: 500,
jgImageMaxHeight: 200
});
});
</pre>
</code>
<p>jGallery on <a href="https://github.com/igorescobar/jGallery" target="_blank">GitHub</a> & Author <a href="http://blog.igorescobar.com/" rel="author" target="_blank">Igor Escobar</a> </p>
</div>
<br clear="all" />
</body>
</html>