Skip to content

Commit

Permalink
add hunyuan
Browse files Browse the repository at this point in the history
  • Loading branch information
yyvhang committed Dec 4, 2024
1 parent e889205 commit cd5b5af
Show file tree
Hide file tree
Showing 5 changed files with 1,835 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@


## 🔥 Project Updates
- **News**: ```2024/12/04```: We update results of [Hunyuan](https://github.com/Tencent/HunyuanVideo), please check our website.
- **News**: ```2024/11/21```: We update results of Seaweed2.0 Pro, PixelDance2.0 Pro, Pika1.5 and Vidu1.5, please check our website.
- **News**: ```2024/11/12```: We update results of [Seaweed](https://jimeng.jianying.com/ai-tool/home) and [PixVerse-V3](https://pixverse.ai/), please check our website.
- **News**: ```2024/11/01```: We update text-to-video results of [Mochi1](https://www.genmo.ai/blog), we use `cfg=6.0`, which is the same as their website.
Expand Down
1 change: 1 addition & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ <h2 class="model-results-title">Check separate model videos: </h2>
<a href="specifc_model/Seaweed_pro/Seaweed_pro.html">Seaweed2.0 Pro (Nov.)</a>
<a href="specifc_model/Pika1.5/Pika1.5.html">Pika1.5 (Nov.)</a>
<a href="specifc_model/vidu1.5/vidu1.5.html">Vidu1.5 (Nov.)</a>
<a href="specifc_model/hunyuan/hunyuan.html">Hunyuan (Dec.)</a>
</div>
</section>

Expand Down
65 changes: 65 additions & 0 deletions docs/specifc_model/hunyuan/hunyuan.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hunyuan Results</title>
<link rel="stylesheet" href="../css/specific_styles.css">
</head>
<body>
<main>
<header>
<div class="header-left">
<a href="../../index.html" class="back-to-main">← Back to Main</a>
<div class="logo">
<span></span> Hunyuan (Dec.)
</div>
</div>
<nav class="category-nav">
<a href="#text-to-video" class="category-button">Text-to-Video</a>
</nav>
</header>
<section class="intro">
<h1>Videos Generated by <a href="https://github.com/Tencent/HunyuanVideo">Hunyuan</a></h1>
</section>

<section id="text-to-video">
<h1>Text-to-Video</h1>
<div class="projects-container" id="gallery1">
<div class="projects">
</div>
</div>
</section>

</main>

<script src="./hunyuan.js"></script>
<script>
// 平滑滚动
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});

// 高亮当前活动的导航项
const navLinks = document.querySelectorAll('.category-button');
const sections = document.querySelectorAll('section');

function changeLinkState() {
let index = sections.length;

while(--index && window.scrollY + 50 < sections[index].offsetTop) {}

navLinks.forEach((link) => link.classList.remove('active'));
navLinks[index - 1].classList.add('active');
}

window.addEventListener('scroll', changeLinkState);
</script>

</body>
</html>
Loading

0 comments on commit cd5b5af

Please sign in to comment.