-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (21 loc) · 921 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Simple Image Network demo</title>
<script type="text/javascript" src="javascript/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="javascript/jquery-ui-1.8.1.custom.min.js"></script>
<script type="text/javascript" src="javascript/jquery.simpleimagenetwork.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#simpleimagenetwork').simpleimagenetwork();
$('#simpleimagenetwork').simpleimagenetwork('option', 'centerURL', 'javascript/json/center.js');
});
</script>
<link rel="stylesheet" href="css/simpleimagenetwork.css" type="text/css" />
</head>
<body>
<h1>Simple image network demo</h1>
<div id="simpleimagenetwork" ></div>
</body>
</html>