-
Notifications
You must be signed in to change notification settings - Fork 1
/
diagram.html
35 lines (31 loc) · 1.24 KB
/
diagram.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<script type="text/javascript" src="js/raphael.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.4/underscore-min.js"></script>
<script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="js/copyright.js"></script>
<script type="text/javascript" src="js/diagram-grammar.js"></script>
<script type="text/javascript" src="js/jquery-plugin.js"></script>
<script type="text/javascript" src="js/daniel_700.font.js"></script>
<script type="text/javascript" src="js/sequence-diagram.js"></script>
<div class="diagram">
Load Balancer->B: Message
Note left of A: Note to the\n left of A
Note left of B: Note to the\n left of B
Note left of C: Note to the\n left of B
B->Load Balancer: xxxxx
B->C: ssss
Note left of A: Note to the\n left of A
Note left of B: Note to the\n left of B
Note left of C: Note to the\n left of B
</div>
<script>
$(".diagram").sequenceDiagram({theme: 'hand'});
</script>
</body>
</html>