修复播放完动画,嘴角下垂的问题

This commit is contained in:
yinsx
2025-12-24 15:52:06 +08:00
parent de7c26da35
commit 48d587c1ff
3 changed files with 51 additions and 7 deletions

View File

@ -37,6 +37,13 @@
style="width: 100%; cursor: pointer;">
</div>
<div class="input-group">
<label>动画速度 (FPS): <span id="fpsValue">30</span></label>
<input type="range" id="fpsSlider" min="10" max="60" step="1" value="30"
oninput="updateFps(this.value)"
style="width: 100%; cursor: pointer;">
</div>
<button id="generateBtn" onclick="generateAnimation()">生成动画</button>
<button onclick="playAnimation()">播放动画</button>
<button onclick="stopAnimation()">停止动画</button>