-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (35 loc) · 2.01 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="content-script-type" content="text/javascript" />
<title>ImageMap</title>
<script src="./vendor/jquery-1.6.2.min.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="imagemap.css"/>
<script src="./vendor/seadragon-ajax/seadragon-dev.js" type="text/javascript"></script>
<script src="imagemap.js" type="text/javascript"></script>
</head>
<body>
<div id="container"></div>
<p>
Selecione a imagem:
<a class="simple" href="#" onclick="switchTo(event,
'./tiles/img1.dzi');">1</a>
<a class="simple" href="#" onclick="switchTo(event,
'./tiles/img2.dzi');">2</a>
<a class="simple" href="#" onclick="switchTo(event,
'./tiles/img3.dzi');">3</a>
<a class="simple" href="#" onclick="switchTo(event,
'./tiles/img4.dzi');">4</a>
<a class="simple" href="#" onclick="switchTo(event,
'./tiles/img5.dzi');">5</a>
<a class="simple" href="#" onclick="switchTo(event,
'./tiles/img6.dzi');">6</a>
<a class="simple" href="#" onclick="switchTo(event,
'./tiles/img7.dzi');">7</a>
<i class="note">Utilize o mouse para navegar pela imagem e scroll para zoom.</i>
</p>
<p id="copy">ImageMap v0.4 - <a href="http://labmacambira.sf.net">Lab Macambira</a> - <a href="http://thacker.com.br">Transparência Hacker</a> - 2011</p>
</body>
</html>