38 lines
783 B
HTML
38 lines
783 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>URDF Robot Viewer</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
background-color: #111;
|
|
}
|
|
|
|
#status {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 10px;
|
|
color: white;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
padding: 6px 10px;
|
|
border-radius: 4px;
|
|
font-family: sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="status">Loading URDF...</div>
|
|
<canvas id="urdf-canvas"></canvas>
|
|
|
|
|
|
<!-- Your logic -->
|
|
<script type="module" src="script.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |