Files
dsProject/dsLightRag/static/manim.html
2025-08-14 15:45:08 +08:00

125 lines
4.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>东师理想数学动画AI制作平台</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Microsoft YaHei', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f5f5f5;
padding: 40px 20px; /* 增加顶部padding解决整体太靠上的问题 */
}
.container {
max-width: 1200px;
margin: 0 auto;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
overflow: hidden;
}
.header {
background-color: #4CAF50;
color: white;
padding: 25px 20px; /* 增加header的padding使整体比例更协调 */
text-align: center;
}
.content {
display: flex;
flex-wrap: wrap;
}
.video-section {
flex: 2; /* 增加视频区域的flex比例使其更大 */
min-width: 300px;
padding: 20px;
background-color: #f9f9f9;
}
.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9比例 */
height: 0;
overflow: hidden;
border-radius: 8px;
box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.video-container video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.description-section {
flex: 1; /* 保持描述区域的flex比例为1 */
min-width: 300px;
padding: 20px;
}
.description-section h2 {
color: #4CAF50;
margin-bottom: 15px;
border-bottom: 2px solid #4CAF50;
padding-bottom: 10px;
}
.description-section ul {
padding-left: 20px;
margin-bottom: 20px;
}
.description-section li {
margin-bottom: 10px;
}
.footer {
background-color: #333;
color: white;
text-align: center;
padding: 15px;
}
@media (max-width: 768px) {
.content {
flex-direction: column;
}
.video-section, .description-section {
min-width: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>东师理想数学动画AI制作平台</h1>
</div>
<div class="content">
<div class="video-section">
<div class="video-container">
<video controls poster="">
<source src="video/AnimatedFunctionPlot.mp4" type="video/mp4">
您的浏览器不支持HTML5视频播放。
</video>
</div>
</div>
<div class="description-section">
<h2>功能说明</h2>
<p>提供数学动画制作平台,帮助用户直观理解复杂的数学概念和函数关系。</p>
<h2>实现步骤</h2>
<ul>
<li>采用步步为层的策略,确保动画制作的每个步骤都清晰可见</li>
<li>利用大模型逐步生成动画效果,提高制作效率</li>
<li>一步一校验,确保每个动画细节都符合数学原理和视觉效果要求</li>
</ul>
</div>
</div>
<div class="footer">
<p>© 2026 东北师大理想软件股份有限公司 - 版权所有</p>
</div>
</div>
</body>
</html>