18 lines
717 B
HTML
18 lines
717 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<title>Sigma.js Graph</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<div id="sigma-container" style="background-color: #fff"></div>
|
|
<div id="sigma-node-type-controls" style="position: absolute; top: 12px; left: 12px; z-index: 10; background: rgba(255,255,255,0.95); padding: 8px; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); font-family: sans-serif;">
|
|
<strong style="display:block; margin-bottom:6px;">Node types</strong>
|
|
<div id="sigma-controls-list"></div>
|
|
</div>
|
|
<script type="module" src="main.js"></script>
|
|
</body>
|
|
</html>
|
|
|