-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsample.html
41 lines (34 loc) · 1.58 KB
/
sample.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cloud Zoom w/ Gestures</title>
<link rel="stylesheet" type="text/css" href="../assets/cloud-zoom.css" >
</head>
<body>
<h1>Controls</h1>
<dl>
<dt>Desktop</dt>
<dd>Hover to zoom.</dd>
<dt>Mobile</dt>
<dd>Double tap to zoom.</dd>
</dl>
<div>
<a href='product-template/7804610_904_OB_FNT_LG.jpg' class='cloud-zoom' id='zoom1'
rel="position: 'inside', showTitle: false">
<img src="product-template/7804610_904_OB_FNT_MD.jpg" alt='' title="Optional title display" />
</a>
<a href='product-template/7804610_904_OB_BCK_LG.jpg' class='cloud-zoom-gallery' title='Thumbnail 1'
rel="useZoom: 'zoom1', smallImage: 'product-template/7804610_904_OB_BCK_MD.jpg' ">
<img src="product-template/7804610_904_OB_BCK.jpg" alt = "Thumbnail 1"/></a>
<a href='product-template/7804610_904_OB_FNT_LG.jpg' class='cloud-zoom-gallery' title='Thumbnail 1'
rel="useZoom: 'zoom1', smallImage: 'product-template/7804610_904_OB_FNT_MD.jpg' ">
<img src="product-template/7804610_904_OB_FNT.jpg" alt = "Thumbnail 1"/></a>
</div>
<script src="../assets/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="../assets/hammer.js" type="text/javascript"></script>
<script src="../assets/jquery.hammer.js" type="text/javascript"></script>
<script src="../assets/cloudzoom.js" type="text/javascript"></script>
</body>
</html>