-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (67 loc) · 2.96 KB
/
index.html
File metadata and controls
82 lines (67 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Deep Dive Shot Analyzer</title>
<link rel="icon" type="image/png" href="ui/assets/deep-dive-icon.png">
<link rel="apple-touch-icon" href="ui/assets/deep-dive-icon.png">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/library.css">
<link rel="stylesheet" href="css/controls.css">
<link rel="stylesheet" href="css/analysis.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header id="main-header"> <h1>
Deep Dive Shot Analyzer
<span class="subtitle-badge">
<span>FOR</span>
<img src="ui/assets/logo.png" alt="GaggiMate" class="badge-logo">
</span>
</h1>
<div class="author-line">by modsmthng</div>
<div class="app-description">
Used to develop Automatic Pro v3
</div>
<div class="header-import-guide">
<svg class="header-arrow-svg" width="30" height="30" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M55 5 C 30 5 15 20 5 45" stroke="#95a5a6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 45 L 2 30" stroke="#95a5a6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M5 45 L 20 35" stroke="#95a5a6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<p class="header-guide-text">
Drag & Drop<br>or Click
</p>
</div>
</header>
<div id="result-area" style="display: none;">
<div class="file-info-container" id="file-info-container">
<div class="extended-info" id="extended-info-content"></div>
</div>
<div class="analysis-main-card">
<div class="analysis-header-title">Shot Analysis</div>
<div class="controls-area" id="controls-area">
<div class="controls-grid" id="controls-grid"></div>
</div>
<div id="analysis-status-bar" style="margin-top: 15px; margin-bottom: 5px; min-height: 20px;"></div>
<div class="table-container">
<table id="stats-table">
<thead id="table-head"></thead>
<tbody id="table-body"></tbody>
<tfoot id="table-foot"></tfoot>
</table>
</div>
<div id="table-legend" class="analysis-legend"></div>
</div>
<div class="chart-wrapper" id="chart-wrapper">
<canvas id="shotChart"></canvas>
</div>
</div>
</div>
<script type="module" src="js/app.js"></script>
</body>
</html>