Skip to content

Commit 19a7b44

Browse files
committed
web update
1 parent d65f482 commit 19a7b44

4 files changed

Lines changed: 76 additions & 0 deletions

File tree

docs/index.html

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,50 @@
5353
<h1 class="title is-2 publication-title">FloodDiffusion: Tailored Diffusion Forcing for Streaming Motion Generation</h1>
5454
<h1 class="title is-4 publication-title"></h1>
5555

56+
<div class="column has-text-centered">
57+
<div class="publication-links">
58+
<!-- PDF Link. -->
59+
<span class="link-block">
60+
<a href="https://arxiv.org/abs/2512.03520"
61+
class="external-link button is-normal is-rounded is-dark">
62+
<span class="icon">
63+
<i class="ai ai-arxiv"></i>
64+
</span>
65+
<span>arXiv</span>
66+
</a>
67+
</span>
68+
<!-- Code Link. -->
69+
<span class="link-block">
70+
<a href="https://github.com/ShandaAI/FloodDiffusion"
71+
class="external-link button is-normal is-rounded is-dark">
72+
<span class="icon">
73+
<i class="fab fa-github"></i>
74+
</span>
75+
<span>Code</span>
76+
</a>
77+
</span>
78+
<!-- HuggingFace Link. -->
79+
<span class="link-block">
80+
<a href="https://huggingface.co/ShandaAI/FloodDiffusion"
81+
class="external-link button is-normal is-rounded is-dark">
82+
<span class="icon">
83+
🤗
84+
</span>
85+
<span>Model</span>
86+
</a>
87+
</span>
88+
<!-- Real-time Demo Video Link. -->
89+
<span class="link-block">
90+
<a onclick="openDemoModal()" class="external-link button is-normal is-rounded is-info" style="cursor: pointer;">
91+
<span class="icon">
92+
<i class="fas fa-video"></i>
93+
</span>
94+
<span>Real-time Demo Video</span>
95+
</a>
96+
</span>
97+
</div>
98+
</div>
99+
56100
</div>
57101
</div>
58102
</div>
@@ -374,6 +418,38 @@ <h2 class="title is-4">Ablation study</h2>
374418
</div>
375419
</section>
376420

421+
<!-- Real-time Demo Modal -->
422+
<div id="demo-modal" class="modal">
423+
<div class="modal-background" onclick="closeDemoModal()"></div>
424+
<div class="modal-content" style="width: 80%; max-width: 1200px;">
425+
<div class="box" style="padding: 0; overflow: hidden; background: #000;">
426+
<video id="demo-video" controls style="width: 100%; display: block;">
427+
<source src="./static/video_streaming_res/real-time demo.mp4" type="video/mp4">
428+
</video>
429+
</div>
430+
</div>
431+
<button class="modal-close is-large" aria-label="close" onclick="closeDemoModal()"></button>
432+
</div>
433+
434+
<script>
435+
function openDemoModal() {
436+
document.getElementById('demo-modal').classList.add('is-active');
437+
document.getElementById('demo-video').play();
438+
}
439+
440+
function closeDemoModal() {
441+
document.getElementById('demo-modal').classList.remove('is-active');
442+
document.getElementById('demo-video').pause();
443+
}
444+
445+
// Close modal on Escape key
446+
document.addEventListener('keydown', function(e) {
447+
if (e.key === 'Escape') {
448+
closeDemoModal();
449+
}
450+
});
451+
</script>
452+
377453
</body>
378454
</html>
379455

8.3 MB
Binary file not shown.
2.48 MB
Binary file not shown.
1.4 MB
Binary file not shown.

0 commit comments

Comments
 (0)