-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 2.03 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Steam Library Benchmark</title>
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Steam Library Benchmark</h1>
<div style="display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-bottom:10px;">
<input id="steamid" type="text" placeholder="SteamID64 (17 haneli)" style="flex:1; min-width:220px;">
<button id="fetch-library">Kütüphaneyi Getir</button>
</div>
<div style="display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-bottom:10px;">
<input id="user-cpu" type="text" placeholder="CPU (örn: Ryzen 5 5500)" style="flex:1; min-width:220px;">
<input id="user-gpu" type="text" placeholder="GPU (otomatik algılanabilir)" style="flex:1; min-width:220px;">
<input id="user-ram" type="text" placeholder="RAM GB (otomatik algılanabilir)" style="width:120px;">
<button id="apply-hw">Donanımı Uygula</button>
</div>
<div style="display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-bottom:10px;">
<input id="search" type="text" placeholder="Search game..." style="flex:1; min-width:220px;">
<select id="sort">
<option value="desc">Most demanding first</option>
<option value="asc">Least demanding first</option>
</select>
<button id="reload">Reload JSON</button>
</div>
<div id="status"></div>
<div id="loader" class="hidden">
<div class="spinner"></div>
</div>
<table id="results-table" class="hidden">
<thead>
<tr>
<th>#</th>
<th>Game</th>
<th>Req Score</th>
<th>Minimum Requirements</th>
<th>Meets Min?</th>
</tr>
</thead>
<tbody>
<!-- Results will be populated here -->
</tbody>
</table>
</div>
<script type="module" src="script.js"></script>
</body>
</html>