-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (72 loc) · 1.63 KB
/
index.html
File metadata and controls
81 lines (72 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LoonkJS - SVG</title>
<style>
* {
margin: 0;
padding: 0;
}
g, circle, line
{
position: relative !important;
}
#scene
{
position: relative;
z-index: 3;
background-color: #F2F2F2;
border: solid 1px gray;
}
.cursor_pen
{
cursor: url(assets/icons/cursor_pen.svg) 0.1 0.1, pointer;
}
.cursor_arrow
{
cursor: url(assets/icons/cursor_arrow.svg) 0.1 0.1, pointer;
}
.cursor_insert
{
cursor: url(assets/icons/cursor_insert.svg) 0.1 0.1, pointer;
}
.loonk_scene_path
{
padding: 2px;
}
.loonk_scene_path:hover
{
/* cursor: url(assets/icons/cursor_arrow.png) 10, 10, pointer; */
/* stroke: #da2f7d;
stroke-width: 3;
transition: all ease-in 0.10s; */
}
.loonk_scene_path_hover
{
stroke: #da2f7d;
transition: all ease-in 0.10s;
}
.loonk_controls_box_endpoint:hover
{
fill : #da2f7d;
stroke: #da2f7d;
transition: all ease-in 0.10s;
cursor: url(assets/icons/cursor_arrow.png) 0.1 0.1, pointer;
}
.loonk_controls_box_controlpoint:hover
{
fill : #aa205e;
stroke: #a21c58;
transition: all ease-in 0.10s;
cursor: url(assets/icons/cursor_arrow.png) 0.1 0.1, pointer;
}
</style>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" id="scene" width="0" height="0">
</svg>
<script src="loonk.js"></script>
</body>
</html>