Animation.html 723 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="page.js"></script>
  7. <link type="text/css" rel="stylesheet" href="page.css" />
  8. </head>
  9. <body>
  10. <h1>动画常量(Animation Constants)</h1>
  11. <h2>循环模式</h2>
  12. <code>
  13. THREE.LoopOnce
  14. THREE.LoopRepeat
  15. THREE.LoopPingPong
  16. </code>
  17. <h2>插值模式</h2>
  18. <code>
  19. THREE.InterpolateDiscrete
  20. THREE.InterpolateLinear
  21. THREE.InterpolateSmooth
  22. </code>
  23. <h2>结束模式</h2>
  24. <code>
  25. THREE.ZeroCurvatureEnding
  26. THREE.ZeroSlopeEnding
  27. THREE.WrapAroundEnding
  28. </code>
  29. <h2>源代码</h2>
  30. <p>
  31. [link:https://github.com/mrdoob/three.js/blob/master/src/constants.js src/constants.js]
  32. </p>
  33. </body>
  34. </html>