-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (40 loc) · 1.54 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
<!DOCTYPE html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Backgroundfade</title>
<script src="modernizr.custom.js" type="text/javascript" charset="utf-8"></script>
<style type="text/css" media="screen">
#gallery1 {
width: 1000px;
height: 400px;
}
</style>
</head>
<body>
<div id="gallery1">
<img src="http://placehold.it/400x300&text=1" data-image="1" data-gallery="gallery1"/>
<img src="http://placehold.it/400x300&text=2" data-image="2" data-gallery="gallery1"/>
<img src="http://placehold.it/400x300&text=3" data-image="3" data-gallery="gallery1"/>
</div>
<a href="#" data-gallery="gallery1" data-image="1" class="gal-btn">bild 1</a>
<a href="#" data-gallery="gallery1" data-image="2" class="gal-btn">bild 2</a>
<a href="#" data-gallery="gallery1" data-image="3" class="gal-btn">bild 3</a>
<div id="gallery2">
<img src="http://placehold.it/400x300&text=1" data-image="1" data-gallery="gallery2"/>
<img src="http://placehold.it/400x300&text=2" data-image="2" data-gallery="gallery2"/>
<img src="http://placehold.it/400x300&text=3" data-image="3" data-gallery="gallery2"/>
</div>
<script src="jquery.js" type="text/javascript" charset="utf-8"></script>
<script src="backgroundfade.jquery.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
(function($) {
$('#gallery1').g({
'linkSelector': '.gal-btn',
'start': 2
});
$('#gallery2').g();
$('#gallery2').g();
$('#gallery1').g();
})(jQuery);
</script>
</body>