generated from voluntas/nodejs-static-page-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
79 lines (69 loc) · 1.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
<html lang="ja">
<head>
<meta charset="utf-8">
<title>DuckDB-Wasm + Parquet + S3-compatible object storage + OPFS</title>
<style>
#result {
margin-top: 20px;
font-family: Arial, sans-serif;
}
#result table {
border-collapse: collapse;
border: 2px solid #ddd;
table-layout: auto;
width: auto;
}
#result th,
#result td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
white-space: nowrap;
}
#result th {
background-color: #f2f2f2;
font-weight: bold;
border-bottom: 2px solid #ddd;
}
#result tr:nth-child(even) {
background-color: #f9f9f9;
}
#result tr:hover {
background-color: #f5f5f5;
}
#search {
width: 50%;
/* 幅を50%に変更 */
max-width: 500px;
/* 最大幅を設定 */
padding: 10px;
margin-bottom: 10px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 4px;
display: inline-block;
}
</style>
</head>
<body>
<div class="container">
<h1>DuckDB-Wasm + Parquet + S3-compatible object storage + OPFS</h1>
<h2>GitHub: <a
href="https://github.com/voluntas/duckdb-wasm-parquet">https://github.com/voluntas/duckdb-wasm-parquet</a></h2>
<h3 id="duckdb-version"></h3>
<h3 id="duckdb-wasm-version"></h3>
<h3 id="opfsStatus">OPFS: false</h3>
<h3 id="counted">Counted: 0</h3>
<div id="editor"></div>
<button id="fetch-parquet">Fetch Parquet</button>
<button id="samples">Samples (1%)</button>
<button id="samples-download-parquet">Samples (1%) Download Parquet</button>
<button id="aggregation">Aggregation</button>
<button id="purge">Purge</button>
<br>
<input type="text" id="search" placeholder="インスタント検索...">
<div id="result"></div>
</div>
<script type="module" src="./src/main.mts"></script>
</body>
</html>