-
Notifications
You must be signed in to change notification settings - Fork 0
/
imageMapDemo.html
34 lines (31 loc) · 1.24 KB
/
imageMapDemo.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="iFrame message passing test">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>imageMapDemo</title>
</head>
<body>
<img
name="usemap"
src="img/animal.png"
usemap="#m_usaMap"
border="0"
width="100%">
<map name="m_usaMap">
<area shape="circle" coords="247,339,219" href="img/horse.jpg" title="horse">
<area shape="circle" coords="943,307,219" href="img/cow.jpg" title="cow">
<area shape="circle" coords="1651,303,219" href="img/pig.jpg" title="pig">
<area shape="circle" coords="247,1039,219" href="img/zbra.jpg" title="zbra">
<area shape="circle" coords="955,1031,219" href="img/rabbit.jpg" title="rabbit">
<area shape="circle" coords="1683,991,219" href="img/sheep.jpg" title="sheep">
</map>
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<script src="imageMapResizer.min.js"></script>
<script>
imageMapResize();
</script>
</body>
</html>