-
Notifications
You must be signed in to change notification settings - Fork 6
/
demo.html
87 lines (70 loc) · 1.58 KB
/
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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<title>Pinbox.js Demo</title>
<script src="src/jquery.js"></script>
<script src="src/jquery.pinbox.js"></script>
<link rel="stylesheet" href="src/jquery.pinbox.css" />
<style>
body {
background: #F3F5FA;
}
#container {
width: 940px;
padding: 20px;
background: #F8F8F8;
border: solid 1px #ccc;
color: #111;
margin: 20px auto;
border-radius: 3px;
}
</style>
</head>
<body>
<div id="container">
<h1>Pinbox.js</h1>
<p>Below are photos of the East Dallas area in and and around the <a href="http://www.dts.edu/">Dallas Theological Seminary</a> campus.</p>
<h2>Live Oak Street</h2>
<img src="images/live-oak-pano.jpg"
width="940"
height="181"
data-small-src="images/live-oak-pano-inner.jpg"
data-small-width="539"
data-small-height="94"
data-small-left="228"
data-small-top="30"
class="pinbox"
alt="View from Live Oak Street"
/>
<h2>Convent Street</h2>
<img src="images/convent-pano.jpg"
width="940"
height="365"
data-small-src="images/convent-pano-inner.jpg"
data-small-width="507"
data-small-height="264"
data-small-left="163"
data-small-top="11"
class="pinbox"
alt="View from Convent Street"
/>
<h2>Swiss Land</h2>
<img src="images/swissland.jpg"
width="900"
height="600"
data-small-src="images/swissland-inner.jpg"
data-small-width="310"
data-small-height="200"
data-small-left="96"
data-small-top="106"
class="pinbox"
alt="Old Swiss Land apartment complex"
/>
</div>
<script>
jQuery(document).ready(function($) {
$('.pinbox').pinbox();
});
</script>
</body>
</html>