使用 requestAnimationFrame 控制 FPS
requestAnimationFrame 已成為平滑動畫的首選方法,但有時會以不同的速度運行。這裡有一個確保幀速率一致的技術:
Throttle requestAnimationFrame to a Specific FPS
此方法使用條件檢查僅在指定FPS 時執行動畫程式碼間隔已過。
實作:
初始化變數:
繪圖程式碼:
<code class="javascript">var stop = false; var frameCount = 0; var fps, fpsInterval, startTime, now, then, elapsed; function startAnimating(fps) { fpsInterval = 1000 / fps; then = Date.now(); startTime = then; animate(); } function animate() { requestAnimationFrame(animate); now = Date.now(); elapsed = now - then; if (elapsed > fpsInterval) { then = now - (elapsed % fpsInterval); // Put your drawing code here } }</code>
以上是如何使用 requestAnimationFrame 控制動畫中的 FPS?的詳細內容。更多資訊請關注PHP中文網其他相關文章!