forked from thomaspeklak/raphaeljs-worldmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
17 lines (17 loc) · 848 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Worldmap</title>
<link href='http://fonts.googleapis.com/css?family=Josefin+Sans&subset=latin' rel='stylesheet' type='text/css'>
<link media="all" href="styles/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<h1>Worldmap</h1>
<p>Continent change color on mouseover using <a href ="http://raphaeljs.com">raphaeljs</a>. The map is based on the svg map from <a href="http://upload.wikimedia.org/wikipedia/commons/9/95/Continents.svg">Wikipedia</a></p>
<div id="worldmap"></div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script>
<script src="scripts/raphael-min.js" type="text/javascript"></script>
<script src="scripts/application.js" type="text/javascript"></script>
</body>
</html>