-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjetx.html
More file actions
119 lines (115 loc) · 5.15 KB
/
jetx.html
File metadata and controls
119 lines (115 loc) · 5.15 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MAEJOR - JET X</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main class="app">
<header class="top-nav panel">
<div class="brand-block">
<span class="brand-logo">MAEJOR</span>
<span class="brand-sub">Jet X Module</span>
</div>
<nav class="main-menu">
<a href="aviator.html" class="menu-item">AVIATOR</a>
<a href="index.html" class="menu-item">COSMOS</a>
<a href="jetx.html" class="menu-item active">JET X</a>
<a href="docs/index.html?file=mode-emploi-fr.md" class="menu-item">MODE D'EMPLOI</a>
<a href="docs/index.html" class="menu-item">DOCS</a>
</nav>
</header>
<section class="panel intro-panel">
<h1 class="intro-title">Module JET X</h1>
<p class="intro-lead">Interface orientee lecture defensive pour estimer la fenetre de sortie des prochains tours.</p>
<ol class="guide-steps">
<li>Remplissez heure, decimal et resultat precedent.</li>
<li>Lancez l'estimation en un clic ou via <kbd>Ctrl</kbd> + <kbd>Entrer</kbd>.</li>
<li>Comparez min/moy/max avant toute decision.</li>
</ol>
<div class="quick-badges">
<span class="quick-badge">Seuil: x1.60</span>
<span class="quick-badge">Signal prudent</span>
<span class="quick-badge">3 tours max</span>
</div>
</section>
<section class="dashboard-grid">
<div class="column column-left">
<section class="panel">
<h2>Entrees JET X</h2>
<div class="form-grid">
<label>
Heure dernier crash (hh:mm:ss)
<input type="text" id="jxInputTime" placeholder="hh:mm:ss" maxlength="8" inputmode="numeric">
</label>
<label>
Resultat precedent
<input type="text" id="jxInputPrev" placeholder="ex: 1.88">
</label>
<label>
Decimal (10 chiffres)
<input type="text" id="jxInputDec" maxlength="10" inputmode="numeric" placeholder="ex: 6284062193">
</label>
</div>
<div class="actions">
<button id="jxCalcBtn">Calculer JET X</button>
<button id="jxResetBtn" class="alt" type="button">Reinitialiser</button>
</div>
<p class="helper-line">Les donnees non numeriques sont retirees automatiquement.</p>
</section>
</div>
<div class="column column-center">
<section class="panel prediction-panel">
<h2>Prediction JET X</h2>
<div class="prediction-main">
<strong class="prediction-time" id="jxPredTime">--:--:--</strong>
</div>
<div class="result-stats">
<span>Resultat: <strong id="jxPredValue">x--</strong></span>
<span>Min: <strong id="jxMin">x--</strong></span>
<span>Moy: <strong id="jxAvg">x--</strong></span>
</div>
<div class="result-stats">
<span>Max: <strong id="jxMax">x--</strong></span>
<span>P(>x1.60): <strong id="jxProbNext">--%</strong></span>
<span>P(3 tours): <strong id="jxProb3">--%</strong></span>
</div>
<div class="result-stats">
<span>Confiance: <strong id="jxConf">--%</strong></span>
<span>Projection: <strong>3 tours max</strong></span>
<span>Mode: <strong>Jet X spec</strong></span>
</div>
<div class="intervals-box">
<div class="intervals-title">Projection 3 tours JET X</div>
<div id="jxRounds" class="intervals-list"></div>
</div>
</section>
</div>
<div class="column column-right">
<section class="panel">
<h2>Notes JET X</h2>
<div class="summary-compact">
<div class="summary-row">
<span class="label">Specificite</span>
<strong>Seuil de travail adapte a x1.60.</strong>
</div>
<div class="summary-row">
<span class="label">Algorithme</span>
<strong>Fichier dedie: js/jetx-algorithms.js</strong>
</div>
<div class="summary-row">
<span class="label">Interface</span>
<strong>Approche plus defensive sur les signaux.</strong>
</div>
</div>
</section>
</div>
</section>
</main>
<footer class="app-footer">by Alex Maejor</footer>
<script src="js/jetx-algorithms.js"></script>
<script src="js/jetx-app.js"></script>
</body>
</html>