-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdragTest.html
More file actions
51 lines (39 loc) · 1.16 KB
/
dragTest.html
File metadata and controls
51 lines (39 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="structuregen.js"></script>
<style>
@font-face {
font-family: 'BlenderBold';
src: url(Blender-Bold.ttf) format("truetype");
}
@font-face {
font-family: 'BlenderReg';
src: url(Blender-Book.ttf) format("truetype");
}
#mydiv {
position: absolute;
z-index: 9;
text-align: center;
}
body {
color: #FFFFFF;
background: url(dotgrid.png)
}
circle:hover {
opacity: 0.5;
}
</style>
</head>
<body>
<h1>Workflow Analysis</h1>
<p>Very early stages of workflow analysis tool</p>
<svg height=100% width=100%>
<!-- If there are issues, try making this close in the end of the opening tag instead of having a closing tag: -->
<circle id='c1' class="circle" cx="50" cy="50" r="40" stroke="white" stroke-width="3" fill=#BBBBBB></circle>
<circle id='c2' class="circle" cx="50" cy="50" r="40" stroke="white" stroke-width="3" fill=#BBBBBB></circle>
<circle id='c3' class="circle" cx="50" cy="50" r="40" stroke="white" stroke-width="3" fill=#BBBBBB></circle>
<circle id='c4' class="circle" cx="50" cy="50" r="40" stroke="white" stroke-width="3" fill=#BBBBBB></circle>
</svg>
</body>
</html>