-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
336 lines (318 loc) · 14.3 KB
/
Copy pathindex.html
File metadata and controls
336 lines (318 loc) · 14.3 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>Ovulation Calculator</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" />
<meta name="description" content="Trying to conceive? Use our free Ovulation Calculator to track your menstrual cycle, find your most fertile days, and increase your chances of pregnancy.">
<link rel="preload" href="./assets/fonts/inter-v12-latin-regular.woff2" as="font" crossorigin type="font/woff2">
<link rel="preload" href="./assets/fonts/inter-v12-latin-500.woff2" as="font" crossorigin type="font/woff2">
<link rel="preload" href="./assets/fonts/inter-v12-latin-600.woff2" as="font" crossorigin type="font/woff2">
<link rel="preload" href="./assets/fonts/inter-v12-latin-800.woff2" as="font" crossorigin type="font/woff2">
<script type="text/javascript">
window._ = document.getElementById.bind(document);
window.$ = document.querySelector.bind(document);
window.$$ = document.querySelectorAll.bind(document);
window.defaultSystem = "imperial";
localStorage.setItem("theme", "light");
</script>
<link rel="stylesheet" href="./assets/css/main.min.css" />
<script src="./assets/js/all-calculators.js" defer></script>
</head>
<body style="background-color: transparent !important; min-height: 0 !important">
<div style="width: 100%;">
<div style="width:350px;float:left;padding: 15px;">
<div class="calculator-settings">
<div class="calculator-setting" id="calculator_form">
<div class="calculator-content col">
<div class="input-wrapper row">
<label class="input col">
<p class="input__title">First day of your Last Period</p>
<div class="input-field row">
<input type="text" class="input-field__input datepicker_us imperial-system-item" placeholder="mm/dd/yyyy" data-inputmask="'mask': '99/99/9999', 'placeholder': 'mm/dd/yyyy'" data-target="first_day" id="first_day_us" onchange="updateDate(this)" value="06/01/2023" />
<input type="text" class="input-field__input datepicker metric-system-item system-item-hidden" placeholder="yyyy-mm-dd" data-inputmask="'mask': '9999-99-99', 'placeholder': 'yyyy-mm-dd'" data-target="first_day" id="first_day" onchange="updateDate(this)" value="2023-06-01" />
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.25 3.125H3.75C3.40482 3.125 3.125 3.40482 3.125 3.75V16.25C3.125 16.5952 3.40482 16.875 3.75 16.875H16.25C16.5952 16.875 16.875 16.5952 16.875 16.25V3.75C16.875 3.40482 16.5952 3.125 16.25 3.125Z" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M13.75 1.5625V3.125" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M6.25 1.5625V3.125" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M3.125 6.875H16.875" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
</label>
</div>
<div class="input-wrapper row">
<label class="input col pregnancy-calculator,conception-date-calculator,period-calculator,due-date-calculator" style="">
<p class="input__title">Average Cycles Length</p>
<div class="dropdown-wrapper">
<div class="input-field row " tabindex="0">
<select class="input-field__text" onchange="toggleRelatedInputs(this)" id="avg_cycles_length">
<option value="22 days" >
22 days
</option>
<option value="23 days" >
23 days
</option>
<option value="24 days" >
24 days
</option>
<option value="25 days" >
25 days
</option>
<option value="26 days" >
26 days
</option>
<option value="27 days" >
27 days
</option>
<option value="28 days" selected>
28 days
</option>
<option value="29 days" >
29 days
</option>
<option value="30 days" >
30 days
</option>
<option value="31 days" >
31 days
</option>
<option value="32 days" >
32 days
</option>
<option value="33 days" >
33 days
</option>
<option value="34 days" >
34 days
</option>
<option value="35 days" >
35 days
</option>
<option value="36 days" >
36 days
</option>
<option value="37 days" >
37 days
</option>
<option value="38 days" >
38 days
</option>
<option value="39 days" >
39 days
</option>
<option value="40 days" >
40 days
</option>
<option value="41 days" >
41 days
</option>
<option value="42 days" >
42 days
</option>
<option value="43 days" >
43 days
</option>
<option value="44 days" >
44 days
</option>
</select>
</div>
</div>
</label>
</div>
</div>
<div class="calculator-content calculator-content--gray calculator-content--footer calculator-content--small row "
>
<button class="system-switcher" onclick="toggleSystem(this); calculate(); animateElements();"
aria-label="Switch System">
<div class="system-switcher__circle"></div>
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.5 9.5H10C9.44772 9.5 9 9.05228 9 8.5V2.5M4.5 2.5H3.5C2.94772 2.5 2.5 2.94772 2.5 3.5L2.5 9.5M7.5 4.5L10.5 4.5M1.5 5.5L4.5 5.5" stroke="white" stroke-width="2" stroke-linecap="round"></path>
</svg>
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 3.5L2 8.5M2 8L2 5.5C2 4.39543 2.89543 3.5 4 3.5C5.10457 3.5 6 4.39543 6 5.5M6 5.5L6 8.5M6 5.5L6 8M6 5.5C6 4.39543 6.89543 3.5 8 3.5C9.10457 3.5 10 4.39543 10 5.5V8.5" stroke="white" stroke-width="2" stroke-linecap="round"></path>
</svg>
</button>
<script type="text/javascript">
$$(".imperial-system-item, .metric-system-item").forEach(function (element, index) {
element.classList.remove("system-item-hidden");
});
$$((defaultSystem == "metric") ? ".imperial-system-item" : ".metric-system-item").forEach(function (element, index) {
element.classList.add("system-item-hidden");
});
if (defaultSystem == "metric") $('.system-switcher').classList.add('system-switcher--active');
</script>
<button class="button button--primary ml-auto "
onclick="calculate(this); animateElements();" data-action="calculate"
id="action-button">Calculate</button>
</div>
<link rel="stylesheet" href="./assets/css/air-datepicker.min.css" defer />
<script type="text/javascript" src="./assets/js/lib/air-datepicker.js" id="datepicker_script"
defer></script>
<script type="text/javascript" src="./assets/js/calculator.js" defer></script>
</div>
</div>
</div>
<div style="float:left;padding: 15px; overflow: scroll;">
<div class="calculator-result calculator-result--error col" id="error-box">
<div class="row">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18ZM8.70711
7.29289C8.31658 6.90237 7.68342 6.90237 7.29289 7.29289C6.90237 7.68342 6.90237 8.31658 7.29289 8.70711L8.58579 10L7.29289 11.2929C6.90237 11.6834 6.90237 12.3166 7.29289
12.7071C7.68342 13.0976 8.31658 13.0976 8.70711 12.7071L10 11.4142L11.2929 12.7071C11.6834 13.0976 12.3166 13.0976 12.7071 12.7071C13.0976 12.3166 13.0976 11.6834 12.7071
11.2929L11.4142 10L12.7071 8.70711C13.0976 8.31658 13.0976 7.68342 12.7071 7.29289C12.3166 6.90237 11.6834 6.90237 11.2929 7.29289L10 8.58579L8.70711 7.29289Z" fill="#F87171" class="dark:fill-red-200"></path>
</svg>
<p class="calculator-error__title">There was an error with your calculation.</p>
</div>
<div class="col" id="error-list"></div>
</div> <span id="calculator_result"><div class="calculator-result col">
<div class="calculator-result__col calculator-result__col--ovulation">
<div class="result-table__wrapper result-table__wrapper--ovulation">
<table class="result-table animate">
<thead>
<tr>
<th class="semibold">Ovulation Window</th>
<td class="semibold" id="ovulation-window">Jun 13, 2023 - Jun 17, 2023</td>
</tr>
</thead>
<tbody>
<tr>
<th>Most Probable Ovulation Date</th>
<td id="most-probable">Jun 15, 2023</td>
</tr>
<tr>
<th>Intercourse Window for Pregnancy</th>
<td id="intercourse-window">Jun 10, 2023 - Jun 17, 2023</td>
</tr>
<tr>
<th>Pregnancy Test</th>
<td id="test-day">Jun 24, 2023</td>
</tr>
<tr>
<th>Next Period Start</th>
<td id="next-period">Jun 29, 2023</td>
</tr>
</tbody>
</table>
</div>
<div class="col result-age result-age--small result-age--range result-start-date">
<p class="date-title"><span class="date-title date-title--date animate">Jun 2023<span></span></span></p>
<div>
<p>M</p>
<p>T</p>
<p>W</p>
<p>T</p>
<p>F</p>
<p>S</p>
<p>S</p>
</div>
<div class="result-age--days animate">
<p class="next">29</p>
<p class="next">30</p>
<p class="next">31</p>
<p class="active">1</p>
<p class="active">2</p>
<p class="active">3</p>
<p class="active">4</p>
<p class="active">5</p>
<p class="active">6</p>
<p class="active">7</p>
<p class="active">8</p>
<p class="active">9</p>
<p class="active">10</p>
<p class="active">11</p>
<p class="active">12</p>
<p class="active current">13</p>
<p class="active current-between">14</p>
<p class="active current-between">15</p>
<p class="active current-between">16</p>
<p class="active current">17</p>
<p class="active">18</p>
<p class="active">19</p>
<p class="active">20</p>
<p class="active">21</p>
<p class="active">22</p>
<p class="active">23</p>
<p class="active">24</p>
<p class="active">25</p>
<p class="active">26</p>
<p class="active">27</p>
<p class="active">28</p>
<p class="active">29</p>
<p class="active">30</p>
<p class="next">1</p>
<p class="next">2</p>
<p class="next">3</p>
<p class="next">4</p>
<p class="next">5</p>
<p class="next">6</p>
<p class="next">7</p>
<p class="next">8</p>
<p class="next">9</p>
</div>
</div>
</div>
<div class="result-table__wrapper">
<table class="result-table">
<thead class="dark">
<tr>
<th class="dark indigo" colspan="4">ESTIMATIONS FOR THE NEXT 6 CYCLES</th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<th class="short">Period Start</th>
<th class="short">Ovulation Window</th>
<th class="short">Due Date</th>
</tr>
</tbody>
<tbody id="next-6-cycles" class="animate">
<tr>
<td>1</td>
<td class="short">Jun 1, 2023</td>
<td class="short">Jun 13, 2023 - Jun 17, 2023</td>
<td class="short">Marc 7, 2024</td>
</tr>
<tr>
<td>2</td>
<td class="short">Jun 29, 2023</td>
<td class="short">Jul 11, 2023 - Jul 15, 2023</td>
<td class="short">Apr 4, 2024</td>
</tr>
<tr>
<td>3</td>
<td class="short">Jul 27, 2023</td>
<td class="short">Aug 8, 2023 - Aug 12, 2023</td>
<td class="short">May 2, 2024</td>
</tr>
<tr>
<td>4</td>
<td class="short">Aug 24, 2023</td>
<td class="short">Sep 5, 2023 - Sep 9, 2023</td>
<td class="short">May 30, 2024</td>
</tr>
<tr>
<td>5</td>
<td class="short">Sep 21, 2023</td>
<td class="short">Oct 3, 2023 - Oct 7, 2023</td>
<td class="short">Jun 27, 2024</td>
</tr>
<tr>
<td>6</td>
<td class="short">Oct 19, 2023</td>
<td class="short">Oct 31, 2023 - Nov 4, 2023</td>
<td class="short">Jul 25, 2024</td>
</tr>
</tbody>
</table>
</div>
</div>
</span>
</div>
</div>
<script async src="./assets/js/lib/math.min.js"></script>
<script defer src="./assets/js/functions.js"></script>
</body>
</html>