-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
33 lines (33 loc) · 1.16 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Panorama 360°</title>
<meta name="description" content="Creative design agency that tries to make the complex feel simple." />
<link rel="stylesheet" href="css/site.css" media="all" />
<link rel="stylesheet" href="css/panorama360.css" media="all" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script src="js/jquery.mousewheel.min.js"></script>
<script src="js/jquery.panorama360.js"></script>
<script>
<!--
$(function(){
$('.panorama-view').panorama360();
});
-->
</script>
</head>
<body>
<div class="panorama">
<div class="panorama-view">
<div class="panorama-container">
<img src="http://upload.wikimedia.org/wikipedia/commons/1/15/View_from_Sky_Tower_Akl.jpg" usemap="hotspots" data-width="4996" data-height="1300" alt="Panorama" />
<map id="hotspots" name="hotspots">
<area shape="rect" coords="240,530,520,580" href="#" alt="This is a hotspot" />
</map>
</div>
</div>
<a class="info round" href="http://commons.wikimedia.org/wiki/File:View_from_Sky_Tower_Akl.jpg">Sky Tower Akl</a>
</div>
</body>
</html>