-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
728 lines (716 loc) · 25.2 KB
/
index.html
File metadata and controls
728 lines (716 loc) · 25.2 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
<!doctype html>
<html
lang="en-us"
data-bs-core="modern"
data-bs-theme="dark"
>
<head>
<title>Eve Online Ship Fitting</title>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<!-- Stylesheets -->
<div id="stylesheets">
<!-- Normalize.css -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"
/>
<!-- Halfmoon.css -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/Halfmoon/2.0.1/css/halfmoon.min.css"
/>
<!-- Halfmoon Modern Core -->
<link
href="https://cdn.jsdelivr.net/npm/halfmoon@2.0.1/css/cores/halfmoon.modern.css"
rel="stylesheet"
/>
<!-- Custom CSS -->
<link
rel="stylesheet"
type="text/css"
href="./src/css/style.css"
/>
</div>
</head>
<body class="container-fluid bg-body subpixel-antialiased">
<header class="jumbotron jumbotron-fluid">
<h1 class="text-center w-md-75 text-body border-bottom mx-auto pb-2">Eve Online Ship Fitting Display</h1>
<nav class="btn-group text-center row-col d-block">
<input
type="button"
class="btn btn-outline-primary position-relative"
data-bs-toggle="offcanvas"
data-bs-target="#import-panel"
value="Import"
/>
<input
type="button"
class="btn btn-outline-primary position-relative"
data-bs-toggle="offcanvas"
data-bs-target="#items-panel"
value="Items"
/>
<input
type="button"
class="btn btn-outline-primary position-relative"
data-bs-toggle="offcanvas"
data-bs-target="#cargo-panel"
value="Cargo"
/>
<input
type="button"
class="btn btn-outline-primary position-relative"
data-bs-toggle="offcanvas"
data-bs-target="#stats-panel"
value="Stats"
/>
</nav>
</header>
<main>
<!-- Ship Fitting Display -->
<article
id="fit"
class="mt-5 d-block"
>
<img
src="./src/images/fittingbase.png"
id="fit-mask"
class="img img-rounded rounded-circle opacity-75"
/>
<img
id="ship-image"
class="ship-image img-rounded rounded-circle opacity-75"
src="https://images.evetech.net/types/19724/render?size=1024"
/>
<article
id="slots"
class="slots"
aria-label="Ship Module Slots"
>
<section
class="high-slots"
aria-label="Ship High Slots"
>
<span
class="slot high-slot high-slot-1 slot-1"
aria-label="High Slot 01"
>
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/40661/icon?size=64"
data-tooltip="true"
title="Capital Infectious Scoped Energy Neutralizer"
data-bs-original-title="Capital Infectious Scoped Energy Neutralizer"
aria-label="Capital Infectious Scoped Energy Neutralizer"
/>
</a>
</span>
<span class="slot high-slot high-slot-2 slot-2">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/4292/icon?size=64"
data-tooltip="true"
title="Siege Module II"
data-bs-original-title="Siege Module II"
aria-label="Siege Module II"
/>
</a>
</span>
<span class="slot high-slot high-slot-3 slot-3">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/20450/icon?size=64"
data-tooltip="true"
title="Ion Siege Blaster I"
data-bs-original-title="Ion Siege Blaster I"
aria-label="Ion Siege Blaster I"
/>
</a>
</span>
<span class="slot high-slot high-slot-4 slot-4">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/20450/icon?size=64"
data-tooltip="true"
title="Ion Siege Blaster I"
data-bs-original-title="Ion Siege Blaster I"
aria-label="Ion Siege Blaster I"
/>
</a>
</span>
<span class="slot high-slot high-slot-5 slot-5">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/20450/icon?size=64"
data-tooltip="true"
title="Ion Siege Blaster I"
data-bs-original-title="Ion Siege Blaster I"
aria-label="Ion Siege Blaster I"
/>
</a>
</span>
<span class="slot high-slot high-slot-6 slot-6">
<a
class="slot-item"
href=""
>
<img
src="./src/images/high.png"
data-tooltip="true"
title="high-slot-6"
data-bs-original-title="Empty High Slot"
aria-label="Empty High Slot"
/>
</a>
</span>
<span class="slot high-slot high-slot-7">
<a
class="slot-item"
href=""
>
<img
src="./src/images/high.png"
data-tooltip="true"
title="high-slot-7"
data-bs-original-title="Empty High Slot"
aria-label="Empty High Slot"
/>
</a>
</span>
<span class="slot high-slot high-slot-8">
<a
class="slot-item"
href=""
>
<img
src="./src/images/high.png"
data-tooltip="true"
title="high-slot-8"
data-bs-original-title="Empty High Slot"
aria-label="Empty High Slot"
/>
</a>
</span>
</section>
<section class="mid-slots">
<span class="slot mid-slot mid-slot-1">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/40734/icon?size=64"
data-tooltip="true"
title="Heavy Warp Disruptor II"
data-bs-original-title="Heavy Warp Disruptor II"
aria-label="Heavy Warp Disruptor II"
/>
</a>
</span>
<span class="slot mid-slot mid-slot-2">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/1978/icon?size=64"
data-tooltip="true"
title="Tracking Computer II"
data-bs-original-title="Tracking Computer II"
aria-label="Tracking Computer II"
/>
</a>
</span>
<span class="slot mid-slot mid-slot-3">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/1978/icon?size=64"
data-tooltip="true"
title="Tracking Computer II"
data-bs-original-title="Tracking Computer II"
aria-label="Tracking Computer II"
/>
</a>
</span>
<span class="slot mid-slot mid-slot-4">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/3578/icon?size=64"
data-tooltip="true"
title="Heavy Capacitor Booster II"
data-bs-original-title="Heavy Capacitor Booster II"
aria-label="Heavy Capacitor Booster II"
/>
</a>
</span>
<span class="slot mid-slot mid-slot-5">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/3578/icon?size=64"
data-tooltip="true"
title="Heavy Capacitor Booster II"
data-bs-original-title="Heavy Capacitor Booster II"
aria-label="Heavy Capacitor Booster II"
/>
</a>
</span>
<span class="slot mid-slot mid-slot-6">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/1978/icon?size=64"
data-tooltip="true"
title="Tracking Computer II"
data-bs-original-title="Tracking Computer II"
aria-label="Tracking Computer II"
/>
</a>
</span>
<span class="slot mid-slot mid-slot-7">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/3578/icon?size=64"
data-tooltip="true"
title="Heavy Capacitor Booster II"
data-bs-original-title="Heavy Capacitor Booster II"
aria-label="Heavy Capacitor Booster II"
/>
</a>
</span>
<span class="slot mid-slot mid-slot-8">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/3578/icon?size=64"
data-tooltip="true"
title="Heavy Capacitor Booster II"
data-bs-original-title="Heavy Capacitor Booster II"
aria-label="Heavy Capacitor Booster II"
/>
</a>
</span>
</section>
<section class="low-slots">
<span class="slot low-slot low-slot-1">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/40351/icon?size=64"
data-tooltip="true"
title="25000mm Steel Plates II"
data-bs-original-title="25000mm Steel Plates II"
aria-label="25000mm Steel Plates II"
/>
</a>
</span>
<span class="slot low-slot low-slot-2">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/40351/icon?size=64"
data-tooltip="true"
title=""
data-bs-original-title="25000mm Steel Plates II"
aria-label="25000mm Steel Plates II"
/>
</a>
</span>
<span class="slot low-slot low-slot-3">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/40351/icon?size=64"
data-tooltip="true"
title=""
data-bs-original-title="25000mm Steel Plates II"
aria-label="25000mm Steel Plates II"
/>
</a>
</span>
<span class="slot low-slot low-slot-4">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/18789/icon?size=64"
data-tooltip="true"
title=""
data-bs-original-title="Coreli A-Type Multispectrum Coating"
aria-label="Coreli A-Type Multispectrum Coating"
/>
</a>
</span>
<span class="slot low-slot low-slot-5">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/2048/icon?size=64"
data-tooltip="true"
title=""
data-bs-original-title="Damage Control II"
aria-label="Damage Control II"
/>
</a>
</span>
<span class="slot low-slot low-slot-6">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/10190/icon?size=64"
data-tooltip="true"
title="Magnetic Field Stabilizer II"
data-bs-original-title="Magnetic Field Stabilizer II"
aria-label="Magnetic Field Stabilizer II"
/>
</a>
</span>
<span class="slot low-slot low-slot-7">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/10190/icon?size=64"
data-tooltip="true"
title="Magnetic Field Stabilizer II"
data-bs-original-title="Magnetic Field Stabilizer II"
aria-label="Magnetic Field Stabilizer II"
/>
</a>
</span>
<span class="slot low-slot low-slot-8">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/10190/icon?size=64"
data-tooltip="true"
title="Magnetic Field Stabilizer II"
data-bs-original-title="Magnetic Field Stabilizer II"
aria-label="Magnetic Field Stabilizer II"
/>
</a>
</span>
</section>
<section class="rig-slots">
<span class="slot rig-slot rig-slot-1">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/30993/icon?size=64"
data-tooltip="true"
title="Capital Trimark Armor Pump I"
data-bs-original-title="Capital Trimark Armor Pump I"
aria-label="Capital Trimark Armor Pump I"
/>
</a>
</span>
<span class="slot rig-slot rig-slot-2">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/30993/icon?size=64"
data-tooltip="true"
title="Capital Trimark Armor Pump I"
data-bs-original-title="Capital Trimark Armor Pump I"
aria-label="Capital Trimark Armor Pump I"
/>
</a>
</span>
<span class="slot rig-slot rig-slot-3">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/30993/icon?size=64"
data-tooltip="true"
title="Capital Trimark Armor Pump I"
data-bs-original-title="Capital Trimark Armor Pump I"
aria-label="Capital Trimark Armor Pump I"
/>
</a>
</span>
</section>
<section class="sub-system-slots">
<span class="slot sub-system-slot sub-system-slot-1">
<a
class="slot-item"
href=""
>
<img
src="#"
data-tooltip="true"
title="Capital Trimark Armor Pump I"
data-bs-original-title="Capital Trimark Armor Pump I"
aria-label="Capital Trimark Armor Pump I"
/>
</a>
</span>
<span class="slot sub-system-slot sub-system-slot-2">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/30993/icon?size=64"
data-tooltip="true"
title="Capital Trimark Armor Pump I"
data-bs-original-title="Capital Trimark Armor Pump I"
aria-label="Capital Trimark Armor Pump I"
/>
</a>
</span>
<span class="slot sub-system-slot sub-system-slot-3">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/30993/icon?size=64"
data-tooltip="true"
title="Capital Trimark Armor Pump I"
data-bs-original-title="Capital Trimark Armor Pump I"
aria-label="Capital Trimark Armor Pump I"
/>
</a>
</span>
<span class="slot sub-system-slot sub-system-slot-3">
<a
class="slot-item"
href=""
>
<img
src="https://images.evetech.net/types/30993/icon?size=64"
data-tooltip="true"
title="Capital Trimark Armor Pump I"
data-bs-original-title="Capital Trimark Armor Pump I"
aria-label="Capital Trimark Armor Pump I"
/>
</a>
</span>
</section>
</article>
</article>
<div id="side-panels">
<!-- Items Side-panel -->
<aside
id="items-panel"
data-bs-scroll="true"
data-bs-backdrop="false"
tabindex="-1"
aria-labelledby="items-panel-title"
class="offcanvas offcanvas-start card bg-primary rounded-start-0 border-end shadow w-sm-75 w-md-50 w-xl-75 w my-5 pe-1"
>
<header class="bg-body rounded-end rounded-bottom-0 border border-bottom-0 border-start-0 text-center">
<h2 id="items-panel-title card-title">Items Panel</h2>
</header>
<article
class="w-100 h-100 bg-body-secondary bg-opacity-75 rounded-bottom rounded-start-0 rounded-top-0 border border-top-0 border-start-0"
>
<section class="h-100 bg-body-tertiary rounded border border-start-0 rounded-start-0 rounded-top-0 p-0">
<form class="p-4">
<fieldset class="form-group">
<legend
class="form-group-text"
alt="Agency 'Pyrolancea' DB7 Dose III x 5"
data-tooltip="true"
title="Select a category to enable the item group selection."
>Item Lookup</legend>
<span class="input-group">
<label
for="item-category-select"
class="input-group-text"
alt="Agency 'Pyrolancea' DB7 Dose III x 5"
data-tooltip="true"
title="Select a category to enable the item group selection."
>Item Category:</label>
<select
id="item-category-select"
class="form-control"
>
<option value="">Select Item Category</option>
<option value="ammo">Ammo</option>
<option value="drone">Drone</option>
<option value="module">Module</option>
<option value="ship">Ship</option>
</select>
</span>
<span class="input-group">
<label
for="item-group-select"
class="input-group-text"
>Item Group:</label>
<select
id="item-group-select"
class="form-control"
disabled
>
<option value="">Select Item Group</option>
<option value="ammo">Ammo</option>
<option value="drone">Drone</option>
<option value="module">Module</option>
<option value="ship">Ship</option>
</select>
</span>
<span class="input-group">
<label
for="item-type-input"
class="input-group-text"
>Item Type:</label>
<input
id="item-type-input"
type="text"
class="form-control"
placeholder="Item Type"
>
</span>
</fieldset>
</form>
</section>
</article>
</aside>
<!-- Cargo Side-panel -->
<aside
id="cargo-panel"
data-bs-scroll="true"
data-bs-backdrop="false"
tabindex="-1"
aria-labelledby="cargo-panel-title"
class="offcanvas offcanvas-bottom card bg-primary rounded-0 rounded-top-5 border-top shadow h-50 pt-4 pb-0 ps-1 pe-0 ms-2"
>
<h2 id="cargo-panel-title card-title">Cargo Panel</h2>
<article class="d-block">
<header class="card-header input-group">
<img
src="https://www.eveworkbench.com/images/icons/items.png"
width="32"
/>
<h2 class="card-title">Cargo:</h2>
</header>
<section class="card-body">
<img
src="https://images.evetech.net/types/20929/icon?size=32"
data-tooltip="true"
title="Shadow Antimatter Charge XL"
data-bs-original-title="Shadow Antimatter Charge XL"
aria-label="Shadow Antimatter Charge XL"
/>
<span
class="text-info"
style="
position: relative;
bottom: 18px;
left: 24px;
cursor: default;
text-wrap: nowrap;
"
>
x3000
</span>
<img
src="https://images.evetech.net/types/29001/icon?size=32"
data-tooltip="true"
title="Tracking Speed Script"
data-bs-original-title="Tracking Speed Script"
aria-label="Tracking Speed Script"
/>
<span class="text-info">
x3
</span>
<img
src="https://images.evetech.net/types/29001/icon?size=32"
alt="Agency 'Pyrolancea' DB7 Dose III x 5"
data-tooltip="true"
title=""
data-bs-original-title="Agency 'Pyrolancea' DB7 Dose III x 5"
aria-label="Agency 'Pyrolancea' DB7 Dose III x 5"
/>
<img
src="https://images.evetech.net/types/29001/icon?size=32"
data-tooltip="true"
title=""
data-bs-original-title="Agency 'Pyrolancea' DB9 Dose IV x 4"
aria-label="Agency 'Pyrolancea' DB9 Dose IV x 4"
/>
</section>
</article>
</aside>
<!-- Stats Side-panel -->
<aside
id="stats-panel"
data-bs-scroll="true"
data-bs-backdrop="false"
tabindex="-1"
aria-labelledby="stats-panel-title"
class="offcanvas offcanvas-end card bg-primary rounded-0 rounded-top-5 border-top shadow w-25 pt-4 pb-0 ps-1 pe-0 ms-2"
>
<h2 id="stats-panel-title card-title">Stats Panel</h2>
</aside>
</div>
</main>
<div id="scripts">
<!-- Popper.js -->
<script
fetchpriority="low"
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
></script>
<!-- Bootstrap.js -->
<script
fetchpriority="auto"
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js"
></script>
</div>
</body>
</html>