-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphoto.html
70 lines (64 loc) · 3.62 KB
/
photo.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=cp1251" charset="utf-8" />
<title>Photo</title>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="images/icon.ico" />
<script type="text/javascript" src="./js/jquery-1.4.3.min.js"></script>
<script type="text/javascript" src="./js/fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
<script type="text/javascript" src="./js/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<link rel="stylesheet" type="text/css" href="./js/fancybox/jquery.fancybox-1.3.4.css" media="screen" />
<script type="text/javascript">
$(document).ready(function () {
$("a.photo").fancybox({
transitionIn: 'elastic',
transitionOut: 'elastic',
speedIn: 666,
speedOut: 666,
'titlePosition': 'over',
'titleFormat': function (title, currentArray, currentIndex) {
return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' ' + title : '') + '</span>';
}
});
})
</script>
<script type="text/javascript" src="js/Load.js">
</script>
</head>
<body>
<div id="header">
<script>loadXmlMenu()</script>
</div>
<div class="gallery">
<a rel="gallery" class="photo" href="images/big/1.jpg" title="">
<img src="images/small/1.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/2.jpg" title="">
<img src="images/small/2.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/3.jpg" title="">
<img src="images/small/3.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/4.jpg" title="">
<img src="images/small/4.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/5.jpg" title="">
<img src="images/small/5.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/6.jpg" title="">
<img src="images/small/6.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/7.jpg" title="">
<img src="images/small/7.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/8.jpg" title="">
<img src="images/small/8.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/9.jpg" title="">
<img src="images/small/9.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/10.jpg" title="">
<img src="images/small/10.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/11.jpg" title="">
<img src="images/small/11.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/12.jpg" title="">
<img src="images/small/12.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/13.jpg" title="">
<img src="images/small/13.jpg" width="176" height="144" alt="" /></a>
<a rel="gallery" class="photo" href="images/big/14.jpg" title="">
<img src="images/small/14.jpg" width="176" height="144" alt="" /></a>
</div>
</body>
</html>