forked from codingforme/jquery-photo-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
30 lines (30 loc) · 808 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>demo</title>
<script src="jquery-photo-gallery/jquery.js"></script>
<script src="jquery-photo-gallery/jquery.photo.gallery.js"></script>
<style>
html,body{
width : 100%;
height : 100%;
margin:0;
overflow: hidden;
}
img{
max-width: 300px;
max-height: 200px;
}
</style>
</head>
<body>
<h2>双击图片显示大图</h2>
<div class="gallerys">
<img class="gallery-pic" src="img/1.jpg" ondblclick="$.openPhotoGallery(this)" />
<img class="gallery-pic" src="img/2.jpg" ondblclick="$.openPhotoGallery(this)" />
<img class="gallery-pic" src="img/3.jpg" ondblclick="$.openPhotoGallery(this)" />
<img class="gallery-pic" src="img/4.jpg" ondblclick="$.openPhotoGallery(this)" />
</div>
</body>
</html>