-
Notifications
You must be signed in to change notification settings - Fork 1
/
Algorithm.php
executable file
·52 lines (49 loc) · 1.75 KB
/
Algorithm.php
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
47
48
49
50
51
<html>
<head>
<title><?=$_GET['name']?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="css/OldPageStyle.css">
<link rel="stylesheet" href="css/jquery.slider.min.css" type="text/css">
<script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="js/jquery.slider.min.js"></script>
<script type="text/javascript" src="Animation/Canvas.js"></script>
<script type="text/javascript" src="Animation/ShapeObject.js"></script>
<script type="text/javascript" src="Animation/AnimateArguments.js"></script>
<script type="text/javascript" src="Animation/Rectangle.js"></script>
<script type="text/javascript" src="Animation/Label.js"></script>
<script type="text/javascript" src="Animation/Line.js"></script>
<script type="text/javascript" src="Algorithm/AlgorithmObject.js"></script>
<script src="Algorithm/<?=$_GET['name']?>.js"></script>
</head>
<body onload="init();">
<div id="wrapper">
<?php
if(!$_GET['header']=="no")
{
echo "
<div id='header'>
<h3 id='AlgorithmName'></h3>";
if($_GET['debug']=="true")
{
echo "<script src='ThirdLibrary/debug.js'></script>";
echo "<input id='x-coord' class='debug' type=text><input id='y-coord' class='debug' type=text>";
}
echo "
</div>";
}
?>
<div id="body">
<div id="AlgorithmControlBar">
<div id="CanvasControlBar">
<div id="SpeedBar"></div>
</div>
</div>
<canvas></canvas>
</div>
<div id="footer">
<div id="author">Author:<a href="http://blog.freepanda.me/about">KJlmfe</a></div>
<div id="copyright">Copyright © 2012 - 2012 <a href="http://www.freepanda.me">FreePanda.</a> All Rights Reserved</div>
</div>
</div>
</body>
</html>