-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
47 lines (37 loc) · 1.24 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>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery Cyclorama</title>
<link rel="stylesheet" href="css/jquery.cyclorama.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/jquery.cyclorama.js"></script>
<script>
jQuery(function ($) {
$('.cyclorama').cyclorama({useKeyboard: true});
});
</script>
</head>
<body>
<h1 class="title">jQuery Cyclorama</h1>
<div class="cyclorama">
<div class="pan-inner">
<div class="pan-content">
<img src="images/canal-rocks-360-degrees_01.jpg" alt="">
<img src="images/canal-rocks-360-degrees_02.jpg" alt="">
<img src="images/canal-rocks-360-degrees_03.jpg" alt="">
<img src="images/canal-rocks-360-degrees_04.jpg" alt="">
<img src="images/canal-rocks-360-degrees_05.jpg" alt="">
</div>
</div>
<button class="pan-left"></button>
<button class="pan-right"></button>
<div class="pan-percentage">
<div class="pan-runner"></div>
</div>
</div>
</body>
</html>