-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (102 loc) · 4.8 KB
/
index.html
File metadata and controls
130 lines (102 loc) · 4.8 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE HTML>
<html>
<head>
<title>Dragonfly Messaging - The fastest way to connect ad-hoc software modules</title>
<style>
.link {
background-color:rgba(245, 45, 45, 0.60);
padding: 5px 8px 6px 7px;
-moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;
text-decoration:none; color:#e0e0e0;
text-shadow: 3px 3px 4px rgb(0,0,0);
}
.link:hover {
border-bottom:3px solid #fff;
}
</style>
<script type="text/javascript">
var img_id = "";
var flutter_idx = 0;
var flutter_cnt = 0;
function flutter()
{
if (img_id == "") {
img_id = "2";
}
else {
img_id = "";
}
img_filename = "df_logo" + img_id + ".png";
document.getElementById("logo").src = img_filename;
if (flutter_cnt == 0) {
flutter_cnt = Math.floor(Math.random()*7)+2;
if (flutter_cnt % 2 == 1) {
flutter_cnt++;
}
}
flutter_idx = flutter_idx+1;
if (flutter_idx >= flutter_cnt) {
flutter_cnt = 0;
flutter_idx = 0;
next_time = ((Math.random()*8)+8)*1000;
}
else {
next_time = 50;
}
setTimeout(flutter, next_time);
}
window.onload = flutter;
</script>
</head>
<body style="font-family: 'Georgia',serif; background-color:rgb(2,9,20); color:#eaeaea;
background: scroll url(bg-blue.jpg); background-attachment: fixed;">
<div style="width:860px; margin:20px auto 0 auto;">
<img id="logo" src="df_logo.png" style="float:left; margin-left: 16px; margin-right:-34px; margin-top: 20px;"><br>
<img src="df_logo2.png" style="display: none;">
<div style="margin-top:15px; margin-bottom:12px; text-align: center; font-family: 'Helvetica', sans-serif; font-size:54px;
color:#e0e0e0; text-shadow: 5px 5px 8px rgb(245,45,25);">
DRAGONFLY Messaging<br>
</div>
<div style="margin-top:28px; text-align: center; font-family: 'verdana', sans-serif; font-size:28px;">
The fastest way to connect ad hoc software modules
</div>
<br><br>
<div style="padding-top:36px; padding-right:10px; background-color:rgba(10, 125, 195, 0.55);
-moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; font-size:18px">
<div style="margin: 0 30px 0 40px; padding:16px 0; background-color: rgba(21,32,51,0.8); border-radius: 8px">
<img src="diagram.png" style="display: block; margin-left: auto; margin-right: auto;">
</div>
<br><br>
<div style="margin-top:10px; text-align: center; margin-left:6px; font-weight:bold;">
<a href="http://github.com/dragonfly-msg/dragonfly" class="link" style="margin-right:56px">SOURCE</a>
<a href="https://github.com/dragonfly-msg/binaries/blob/master/dragonfly_windows_setup.exe?raw=true" class="link" style="margin-right:56px">DOWNLOAD</a>
<a href="https://github.com/dragonfly-msg/dragonfly#introduction" class="link" style="margin-right:56px">DOCUMENTATION</a>
<!--<a href="#" class="link" style="margin-right:56px">ABOUT</a>-->
</div>
<br><br>
<div style="width: 720px; margin-left: 120px; padding:12px; line-height:27px;">
<div style="font-family: 'Verdana', sans-serif; font-size:24px; padding-left:20px; padding-bottom:16px;">Key Features</div>
<img src="bullet.png" style="padding-right:12px; padding-left:20px"> Seamless data translation<br>
<img src="bullet.png" style="padding-right:12px; padding-left:20px"> Ideal for soft real-time applications<br>
<img src="bullet.png" style="padding-right:12px; padding-left:20px"> Easy distributed application development<br>
<img src="bullet.png" style="padding-right:12px; padding-left:20px"> Open architecture<br>
<img src="bullet.png" style="padding-right:12px; padding-left:20px"> Multi-platform: Windows, Linux (OSX coming soon)<br>
<img src="bullet.png" style="padding-right:12px; padding-left:20px"> Multi-language: C++, C#, MATLAB, Python (Java coming soon)<br>
<img src="bullet.png" style="padding-right:12px; padding-left:20px"> BSD License<br>
</div>
<br><br>
<p style="margin: 0 40px 0 50px; text-align:justify; line-height:26px;">Dragonfly is a simple messaging system that helps programmers create modular
distributed applications rapidly. It hides the complexities of socket programming and data translation, also provides a uniform high-level API in each of the supported
programming languages and operating systems. Therefore, programmers are able to write each part of their application in their programming language of
choice and on their operating system of choice without having to worry about how the modules will communicate with each other.</p>
<br><br>
</div>
<br><br><br>
<div style="text-align: center; color:#e6eDF8; font-size:12px;">
Copyright (c) 2013 University of Pittsburgh
<br><br><br>
</div>
</div>
</body>
</html>