-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (21 loc) · 1003 Bytes
/
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
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/maphilight/1.4.0/jquery.maphilight.min.js"></script>
<script type="text/javascript">
$(function() {
$('.map').maphilight();
});
</script>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<img src="images/overview.png" alt="Raingarden Overview" width="1000" height="800" class="map center" usemap="#overview" >
<map name="overview">
<area shape="circle" coords="337,400,50" alt="West Garden" href="pages/westgarden.html" data-maphilight='{"stroke":false,"fillColor":"2AACE2","fillOpacity":"0.8"}'>
<area shape="circle" coords="740,330,50" alt="East Garden" href="pages/eastgarden.html" data-maphilight='{"stroke":false,"fillColor":"2AACE2","fillOpacity":"0.8"}'>
</map>
</body>
</html>