-
Notifications
You must be signed in to change notification settings - Fork 54
/
demo.html
68 lines (64 loc) · 2.85 KB
/
demo.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!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=UTF-8">
<link type="text/css" href="lib/jquery-ui-1.8.4.custom/css/smoothness/jquery-ui-1.8.4.custom.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="index.css">
<script type="text/javascript" src="lib/raphael-min.js"></script>
<script type="text/javascript" src="lib/jquery-ui-1.8.4.custom/js/jquery.min.js"></script>
<script type="text/javascript" src="lib/jquery-ui-1.8.4.custom/js/jquery-ui.min.js"></script>
<script type="text/javascript" src="myflow.js"></script>
<script type="text/javascript" src="myflow.jpdl4.js"></script>
<script type="text/javascript" src="myflow.editors.js"></script>
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<div id="myflow_tools" class="ui-widget-content">
<div id="myflow_tools_handle" style="text-align: center;"
class="ui-widget-header"> 工具集 </div>
<div class="node" id="myflow_revoke"><img src="img/save.gif" /> 撤销</div>
<div class="node" id="myflow_redraw"><img src="img/save.gif" /> 重绘</div>
<div class="node" id="myflow_save"><img src="img/save.gif" /> 保存</div>
<div class="node" id="myflow_publish"><img src="img/save.gif" /> 发布</div>
<div>
<hr />
</div>
<div class="node selectable selected" id="pointer"><img
src="img/select16.gif" /> 选择</div>
<div class="node selectable" id="path"><img
src="img/16/flow_sequence.png" /> 转换</div>
<div>
<hr />
</div>
<div class="node state" id="start" type="start"><img
src="img/16/start_event_empty.png" /> 开始</div>
<div class="node state" id="state" type="state"><img
src="img/16/task_empty.png" /> 状态</div>
<div class="node state" id="task" type="task"><img
src="img/16/task_empty.png" /> 任务</div>
<div class="node state" id="fork" type="fork"><img
src="img/16/gateway_parallel.png" /> 分支</div>
<div class="node state" id="join" type="join"><img
src="img/16/gateway_parallel.png" /> 合并</div>
<div class="node state" id="end" type="end"><img
src="img/16/end_event_terminate.png" /> 结束</div>
<div class="node state" id="end-cancel" type="end-cancel"><img
src="img/16/end_event_cancel.png" /> 取消</div>
<div class="node state" id="end-error" type="end-error"><img
src="img/16/end_event_error.png" /> 错误</div>
</div>
<div id="myflow_props" class="ui-widget-content">
<div id="myflow_props_handle" class="ui-widget-header">属性</div>
<table border="1" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td>aaa</td>
</tr>
<tr>
<td>aaa</td>
</tr>
</table>
<div> </div>
</div>
<div id="myflow"></div>
</body>
</html>