-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
400 lines (342 loc) · 11.9 KB
/
index.html
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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Altın Fiyatları Hesaplama</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f7f9fc;
margin: 0;
padding: 0;
}
/* Topbar styling */
.topbar {
background-color: #ffcc00;
padding: 10px;
text-align: center;
font-size: 14px;
color: #333;
font-weight: bold;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding-top: 20px;
}
h1 {
font-size: 28px;
color: #333;
text-align: center;
padding: 10px 0;
line-height: 1.5;
}
.subheader {
text-align: center;
color: #555;
font-size: 16px;
margin-bottom: 30px;
}
.calculator {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #f9faff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
gap: 20px;
}
.calculator input,
.calculator select {
width: 30%;
padding: 15px;
border: 1px solid #e0e0e0;
border-radius: 8px;
font-size: 16px;
}
.calculator button {
background-color: #3b82f6;
color: #fff;
padding: 15px 25px;
border-radius: 8px;
border: none;
cursor: pointer;
font-size: 16px;
white-space: nowrap;
}
.calculator button:hover {
background-color: #2563eb;
}
.result-container {
display: none;
background-color: #f9faff;
padding: 20px;
border-radius: 12px;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
margin-top: 20px;
margin-bottom: 20px;
text-align: center;
font-size: 18px;
}
.result-row {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 10px;
}
.result-row strong {
font-size: 22px;
color: #333;
}
.result-row span {
font-size: 18px;
color: #666;
margin-right: 10px;
}
.result-row .divider {
color: #ccc;
margin: 0 10px;
}
.exchange-rate {
text-align: center;
font-size: 14px;
color: #888;
margin-top: 10px;
}
.main-content {
display: flex;
justify-content: space-between;
gap: 20px;
margin-bottom: 20px;
}
.table-container {
flex: 70%;
background-color: #fff;
border-radius: 12px;
padding: 20px;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.table-container h2 {
font-size: 22px;
color: #333;
margin-bottom: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
table th,
table td {
padding: 15px;
border-bottom: 1px solid #ddd;
text-align: left;
}
table th {
background-color: #f0f4ff;
color: #555;
}
table td {
color: #333;
font-size: 16px;
}
table td.green {
color: green;
}
table td.red {
color: red;
}
.sidebar {
flex: 25%;
background-color: #fff;
border-radius: 12px;
padding: 20px;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.sidebar h3 {
font-size: 18px;
color: #333;
margin-bottom: 20px;
}
.small-price-table {
width: 100%;
border-collapse: collapse;
}
.small-price-table th,
.small-price-table td {
padding: 12px;
border-bottom: 1px solid #ddd;
text-align: left;
}
.small-price-table th {
background-color: #f0f4ff;
color: #555;
}
.small-price-table td {
font-size: 16px;
color: #333;
}
.small-price-table td:last-child {
text-align: right;
}
/* Mobile Responsive */
@media (max-width: 768px) {
.calculator {
flex-direction: column;
}
.calculator input,
.calculator select,
.calculator button {
width: 100%;
margin-bottom: 10px;
}
.main-content {
flex-direction: column;
}
.table-container,
.sidebar {
width: 100%;
margin-bottom: 20px;
}
}
</style>
</head>
<body>
<!-- Topbar -->
<div class="topbar">
Burada yer alan haberler, döviz kurları ve altın fiyatları bilgi amaçlıdır. Yayınlanan bilgiler yatırım
danışmanlığı kapsamında değildir. Bu nedenle, yalnızca burada yer alan bilgilere dayanılarak yatırım kararı verilmesi
beklentilerinize uygun sonuçlar doğurmayabilir.
</div>
<div class="container">
<h1>Anlık Canlı Altın Fiyatları, Gram Altın, Çeyrek Altın Fiyatları</h1>
<p class="subheader">Canlı altın fiyatları ve güncel altın piyasası verileri! Gram, çeyrek, yarım ve tam altın fiyatları ile altının ons fiyatı bugün ne kadar?</p>
<div class="calculator">
<input type="number" id="amount" placeholder="Miktar Giriniz">
<select id="goldType">
<option value="ALTIN">Gram Altın</option>
<option value="CEYREK_YENI">Çeyrek Altın</option>
</select>
<select id="currency">
<option value="TL">TL</option>
</select>
<button id="calculateBtn">Hesapla</button>
</div>
<!-- Result Section -->
<div class="result-container" id="resultContainer">
<div class="result-row">
<span id="saleResult"></span>
<strong id="salePrice"></strong>
</div>
<div class="result-row">
<span id="buyResult"></span>
<strong id="buyPrice"></strong>
</div>
<p class="exchange-rate" id="exchangeRate"></p>
</div>
<!-- Gold Prices Table and Sidebar -->
<div class="main-content">
<div class="table-container">
<h2>Kapalı Çarşı Altın Fiyatları</h2>
<table id="goldTable">
<thead>
<tr>
<th>Altın Birimi</th>
<th>Alış</th>
<th>Satış</th>
<th>Değişim</th>
<th>Zaman</th>
</tr>
</thead>
<tbody>
<!-- Rows will be dynamically generated -->
</tbody>
</table>
</div>
<div class="sidebar">
<h3>1.000 TL'ye Ne Kadar Alınır?</h3>
<table class="small-price-table" id="thousandTLTable">
<thead>
<tr>
</tr>
</thead>
<tbody>
<!-- Rows will be dynamically generated -->
</tbody>
</table>
</div>
</div>
</div>
<script>
const apiUrl = 'https://kapalicarsi.apiluna.org';
let goldData = [];
// Fetch data from the API every second
function fetchGoldPrices() {
fetch(apiUrl)
.then(response => response.json())
.then(data => {
goldData = data;
updateGoldTable();
updateThousandTLTable();
})
.catch(error => console.error('Error fetching data:', error));
}
// Update the gold prices table
function updateGoldTable() {
const goldTableBody = document.querySelector('#goldTable tbody');
goldTableBody.innerHTML = ''; // Clear existing rows
goldData.forEach(item => {
const row = document.createElement('tr');
row.innerHTML = `
<td>${item.code}</td>
<td>${item.alis}</td>
<td>${item.satis}</td>
<td>${(item.satis - item.alis).toFixed(2)}</td>
<td>${item.tarih}</td>
`;
goldTableBody.appendChild(row);
});
}
// Update the 1,000 TL table showing how much of each gold item can be bought
function updateThousandTLTable() {
const thousandTLTableBody = document.querySelector('#thousandTLTable tbody');
thousandTLTableBody.innerHTML = ''; // Clear existing rows
goldData.forEach(item => {
const amountBought = (1000 / parseFloat(item.satis)).toFixed(2); // Calculate how much 1000 TL can buy
const row = document.createElement('tr');
row.innerHTML = `
<td>${item.code}</td>
<td>${amountBought}</td>
`;
thousandTLTableBody.appendChild(row);
});
}
// Perform calculation based on form input
function calculateGold() {
const amount = document.getElementById('amount').value;
const goldType = document.getElementById('goldType').value;
const selectedGold = goldData.find(item => item.code === goldType);
if (selectedGold) {
const salePrice = (amount * parseFloat(selectedGold.satis)).toFixed(3);
const buyPrice = (amount * parseFloat(selectedGold.alis)).toFixed(3);
const exchangeRate = `1 ${goldType} = ${selectedGold.satis} TL | 1 TL = ${(1 / selectedGold.satis).toFixed(5)} ${goldType}`;
// Update results
document.getElementById('saleResult').textContent = `${amount} ${goldType} Satış Fiyatı:`;
document.getElementById('salePrice').textContent = `${salePrice} TL`;
document.getElementById('buyResult').textContent = `${amount} ${goldType} Alış Fiyatı:`;
document.getElementById('buyPrice').textContent = `${buyPrice} TL`;
document.getElementById('exchangeRate').textContent = exchangeRate;
document.getElementById('resultContainer').style.display = 'block';
}
}
// Event listener for form submission
document.getElementById('calculateBtn').addEventListener('click', calculateGold);
// Fetch data every second
setInterval(fetchGoldPrices, 1000);
</script>
</body>
</html>