Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanchao019 committed Apr 15, 2024
1 parent 1683e56 commit 9db81c5
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
subtitle: MuseV Infinite-length and High Fidelity Virtual Human Video Generation with Visual Conditioned Parallel Denoising
---

<h3 id="subtitle" style="text-align: center;">Infinite-length and High Fidelity Virtual Human Video Generation with Visual Conditioned Parallel Denoising</h3>
<h3 id="subtitle" style="text-align: center;">MuseV: Infinite-length and High Fidelity Virtual Human Video Generation with Visual Conditioned Parallel Denoising</h3>

<div class="post">
<p><font size=5>
Expand All @@ -25,7 +25,7 @@ <h3 id="subtitle" style="text-align: center;">Infinite-length and High Fidelity
.navbar {
background-color: #333;
height: 100%;
left: -200px; /* Start off the screen */
left: 0; /* Start on the screen */
overflow: hidden;
position: fixed;
top: 0;
Expand All @@ -51,24 +51,25 @@ <h3 id="subtitle" style="text-align: center;">Infinite-length and High Fidelity
background-color: #ddd;
color: black;
}
/* Show the navbar when the body has the navbar-open class */
body.navbar-open .navbar {
left: 0;
/* Hide the navbar when the body has the navbar-closed class */
body.navbar-closed .navbar {
left: -200px;
}
</style>

<!-- Add the navigation bar -->
<div class="navbar" id="navbar">
<!-- Add a button to toggle the navbar -->
<button onclick="toggleNavbar()">Toggle Navbar</button>
</div>

<script>
function toggleNavbar() {
// Add or remove the navbar-open class
document.body.classList.toggle('navbar-open');
}
</script>
<!-- Add the navigation bar -->
<div class="navbar" id="navbar">
<!-- Add a button to toggle the navbar -->
<button onclick="toggleNavbar()">Toggle Navbar</button>
</div>

<script>
function toggleNavbar() {
// Add or remove the navbar-closed class
document.body.classList.toggle('navbar-closed');
}
</script>

<h2 id="What is MuseV">What is MuseV</h2>
<p><code>MuseV</code> is a diffusion-based virtual human video generation framework, which</p>
Expand Down

0 comments on commit 9db81c5

Please sign in to comment.