Mike0021 commited on
Commit
54049b1
·
verified ·
1 Parent(s): e9715e2

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. assets/index-BgOlzUaC.js +0 -0
  2. 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
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>