-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
149 lines (120 loc) · 5.53 KB
/
index.html
File metadata and controls
149 lines (120 loc) · 5.53 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<html lang='en'>
<head>
<meta charset="UTF-8">
<title>Sheet Creator</title>
<link rel='stylesheet' href='css.css'>
<link rel="preconnect" href="https://fonts.gstatic.com">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://use.fontawesome.com/0fa5cb38d5.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
<style type='text/css'>
</style>
<div id='shapemMenuDiv'>
<ul id='menuList'>
</ul>
</div>
</head>
<body>
<section class='wrapper' id='container'>
<canvas id='canvas'></canvas>
<canvas id='float over'></canvas>
</section>
<nav class='navbar' id='navbar'>
<ul id='navlist'>
<!-- <button id='zoom+' class='zoom'>+</button>
<button id='zoom-' class='zoom'>-</button> -->
<li>
<a href='#' class='local-btn'>Load File
<i class="fa fa-caret-down first"></i>
</a>
<ul id="storedImages" class='local-show'>
<input
type='text'
name='mapload'
id='loadmap'
autocomplete="off"
onpaste="onPasteMapLink(event)"
placeholder="Paste map info here..."/>
</ul>
</li>
<li id='YouTube-Tab' >
<a href='#' class='youtube-btn'>Youtube
<i class="fa fa-caret-down second"></i>
</a>
<ul id="YTClips" class='youtube-show'>
<input
autocomplete="off"
type='text'
name='YoutubeClipLoad'
id='YoutubeClipLoad'
placeholder="Paste a youtube link here..."/>
</ul>
</li>
<li id='textBoxes-Tab' >
<a href='#' class='box-btn'>Text Boxes
<i class="fa fa-caret-down fourth"></i>
</a>
<ul id="Text Box Shelf" class='box-show'>
</ul>
</li>
<!-- <li>
<a href='#' class='input'>Arrow Options</a>
</li> -->
<li>
<a href='#' class='ffdecks-btn'>FFDecks
<i class="fa fa-caret-down third"></i>
</a>
<ul id="FFdecks" class='ffdecks-show'style='max-block-size: 0%;'>
<input
type='text'
name='ffdeckload'
autocomplete="off"
id='ffdeckload'
onpaste="onPasteDeckLink(event)"
placeholder="Paste ffdecks.com/deck link..."/>
</ul>
</li>
</ul>
</nav>
<i id='bin' class="fa fa-trash bin fa-2x" aria-hidden="true"></i>
<i id='save-btn' class="fa fa-save save-btn fa-2x" aria-hidden="true"></i>
<input id='save-infodump' type='text' ></input>
<script type='text/javascript'>
$('.local-btn').click(function(){
$('nav ul .local-show').toggleClass('show');
$('nav ul .first').toggleClass('rotate');
});
$('.youtube-btn').click(function(){
$('nav ul .youtube-show').toggleClass('show3');
$('nav ul .second').toggleClass('rotate');
});
$('.box-btn').click(function(){
$('nav ul .box-show').toggleClass('show1');
$('nav ul .fourth').toggleClass('rotate');
});
$('.ffdecks-btn').click(function(){
$('nav ul .ffdecks-show').toggleClass('show2');
$('nav ul .third').toggleClass('rotate');
});
</script>
<script src='datahandling\Querys.js'></script>
<script src='math\XY Converters.js'></script>
<script src='Arrows and Drawings\Object Definitions.js'></script>
<script src='Arrows and Drawings\SelectTool.js'></script>
<script src='Arrows and Drawings\Draw On Canvas.js'></script>
<script src='math\zoom.js'></script>
<script src='Arrows and Drawings\ArrowMath.js'></script>
<script src='Arrows and Drawings\arrowObject.js'></script>
<script src='datahandling\save.js'></script>
<script src='Arrows and Drawings\DragShapes.js'></script>
<script src='datahandling\ffdecksRequest.js'></script>
<script src='Youtube\ClipLoader.js'></script>
<script src='Youtube\VidLogic.js'></script>
<script src='Youtube\VideoOOP.js'></script>
<script src='datahandling\rightClickMenu.js'></script>
<script src='textboxes.js'></script>
<script src='Arrows and Drawings\TheDrawFunction.js'></script>
<script src='datahandling\doOneThing.js'></script>
<script src='datahandling\Screenload.js'></script>
</body>
</html>