mirror of
https://github.com/VisActor/VTable
synced 2024-11-22 18:57:38 +00:00
37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/jpeg" href="https://lf1-cdn-tos.bytescm.com/obj/static/visactor-site/img/visactor/vtable-icon.svg">
|
|
<link rel="stylesheet" href="./style.css">
|
|
<title>VTable demos</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="sidebar" id="sidebar">
|
|
</div>
|
|
<div class="content">
|
|
<div id="search-component">
|
|
<input id="search-component-input" type="text" placeholder="search" aria-placeholder="aaa">
|
|
<span id="search-component-result">0/0</span>
|
|
<button id="search-component-search">search</button>
|
|
<button id="search-component-next">next</button>
|
|
<button id="search-component-prev">prev</button>
|
|
</div>
|
|
<div id="chartContainer">
|
|
<div id="vTable" style="height:100%; overflow: hidden;"></div>
|
|
</div>
|
|
<div id="article">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
<script src="./main.ts" type="module"></script>
|
|
|
|
</html>
|