Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- assets/index-BgOlzUaC.js +0 -0
- index.html +67 -18
assets/index-BgOlzUaC.js
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
index.html
CHANGED
|
@@ -1,19 +1,68 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>AnyTop | SIGGRAPH 2025 Demo</title>
|
| 7 |
+
<style>
|
| 8 |
+
body { margin: 0; padding: 0; overflow: hidden; background: #050505; font-family: 'Inter', system-ui, sans-serif; color: #fff; }
|
| 9 |
+
#canvas-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
| 10 |
+
#overlay {
|
| 11 |
+
position: absolute; top: 20px; left: 20px; pointer-events: none;
|
| 12 |
+
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
|
| 13 |
+
}
|
| 14 |
+
h1 { margin: 0; font-size: 24px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; color: #00d2ff; }
|
| 15 |
+
p { margin: 5px 0; font-size: 14px; opacity: 0.8; max-width: 400px; line-height: 1.4; }
|
| 16 |
+
.badge {
|
| 17 |
+
display: inline-block; padding: 4px 8px; background: rgba(0, 210, 255, 0.2);
|
| 18 |
+
border: 1px solid #00d2ff; border-radius: 4px; font-size: 10px; font-weight: bold; margin-bottom: 10px;
|
| 19 |
+
}
|
| 20 |
+
#ui-layer {
|
| 21 |
+
position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
|
| 22 |
+
display: flex; gap: 20px; background: rgba(15, 15, 15, 0.85);
|
| 23 |
+
padding: 15px 25px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.1);
|
| 24 |
+
backdrop-filter: blur(10px); pointer-events: auto; align-items: center;
|
| 25 |
+
}
|
| 26 |
+
.ui-btn {
|
| 27 |
+
background: none; border: 1px solid rgba(255,255,255,0.2); color: #fff;
|
| 28 |
+
padding: 8px 16px; border-radius: 20px; cursor: pointer; transition: all 0.3s;
|
| 29 |
+
font-size: 12px; font-weight: 500;
|
| 30 |
+
}
|
| 31 |
+
.ui-btn:hover { background: #00d2ff; color: #000; border-color: #00d2ff; }
|
| 32 |
+
.ui-btn.active { background: #00d2ff; color: #000; border-color: #00d2ff; }
|
| 33 |
+
.caption {
|
| 34 |
+
position: absolute; bottom: 100px; width: 100%; text-align: center;
|
| 35 |
+
font-size: 18px; font-weight: 300; letter-spacing: 1px; color: #aaa;
|
| 36 |
+
pointer-events: none;
|
| 37 |
+
}
|
| 38 |
+
#stats { position: absolute; top: 20px; right: 20px; text-align: right; pointer-events: none; opacity: 0.5; font-size: 10px; }
|
| 39 |
+
</style>
|
| 40 |
+
<script type="module" crossorigin src="/assets/index-BgOlzUaC.js"></script>
|
| 41 |
+
</head>
|
| 42 |
+
<body>
|
| 43 |
+
<div id="canvas-container"></div>
|
| 44 |
+
<div id="overlay">
|
| 45 |
+
<div class="badge">SIGGRAPH 2025 TECHNICAL PAPER</div>
|
| 46 |
+
<h1>AnyTop</h1>
|
| 47 |
+
<p>Character Animation Diffusion with Any Topology.</p>
|
| 48 |
+
<p style="font-size: 11px; margin-top: 15px; color: #888;">Generating motion for arbitrary skeletons using only their skeletal structure as input.</p>
|
| 49 |
+
</div>
|
| 50 |
+
|
| 51 |
+
<div class="caption" id="main-caption">Transferring "Walk" motif across diverse topologies</div>
|
| 52 |
+
|
| 53 |
+
<div id="ui-layer">
|
| 54 |
+
<button class="ui-btn active" onclick="switchTopology('humanoid')">Humanoid</button>
|
| 55 |
+
<button class="ui-btn" onclick="switchTopology('quadruped')">Quadruped</button>
|
| 56 |
+
<button class="ui-btn" onclick="switchTopology('centipede')">Centipede</button>
|
| 57 |
+
<div style="width: 1px; height: 20px; background: rgba(255,255,255,0.2); margin: 0 10px;"></div>
|
| 58 |
+
<button class="ui-btn" id="diffusion-toggle" onclick="toggleDiffusion()">Denoise View</button>
|
| 59 |
+
</div>
|
| 60 |
+
|
| 61 |
+
<div id="stats">
|
| 62 |
+
Latent Space: Informative CROSS-SKELETON MANIFOLD<br>
|
| 63 |
+
Enrichment: T5 + POSITIONAL TOPOLOGY<br>
|
| 64 |
+
Architecture: Skeletal Temporal Transformer
|
| 65 |
+
</div>
|
| 66 |
+
|
| 67 |
+
</body>
|
| 68 |
</html>
|