CSS3DRenderer.html 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="list.js"></script>
  7. <script src="page.js"></script>
  8. <link type="text/css" rel="stylesheet" href="page.css" />
  9. </head>
  10. <body>
  11. <h1>CSS 3D渲染器([name])</h1>
  12. <p class="desc">
  13. [name]用于通过CSS3的[link:https://www.w3schools.com/cssref/css3_pr_transform.asp transform]属性,
  14. 将层级的3D变换应用到DOM元素上。
  15. 如果你希望不借助基于canvas的渲染来在你的网站上应用3D变换,那么这一渲染器十分有趣。
  16. 同时,它也可以将DOM元素与WebGL的内容相结合。
  17. <br /><br />
  18. 然而,这一渲染器也有一些十分重要的限制:
  19. <ul>
  20. <li>它不可能使用*three.js*中的材质系统。</li>
  21. <li>同时也不可能使用几何体。</li>
  22. </ul>
  23. 因此,[name]仅仅关注普通的DOM元素,这些元素被包含到了特殊的对象中(*CSS3DObject*或者*CSS3DSprite*),然后被加入到场景图中。
  24. </p>
  25. <script>
  26. // iOS iframe auto-resize workaround
  27. if ( /(iPad|iPhone|iPod)/g.test( navigator.userAgent ) ) {
  28. var scene = document.getElementById( 'scene' );
  29. scene.style.width = getComputedStyle( scene ).width;
  30. scene.style.height = getComputedStyle( scene ).height;
  31. scene.setAttribute( 'scrolling', 'no' );
  32. }
  33. </script>
  34. <h2>示例</h2>
  35. <p>
  36. [example:css3d_molecules molecules]<br />
  37. [example:css3d_orthographic orthographic camera]<br />
  38. [example:css3d_panorama panorama]<br />
  39. [example:css3d_periodictable periodictable]<br />
  40. [example:css3d_sprites sprites]<br />
  41. </p>
  42. <h2>构造函数</h2>
  43. <h3>[name]()</h3>
  44. <h2>方法</h2>
  45. <h3>[method:Object getSize]()</h3>
  46. <p>
  47. 返回一个包含有渲染器宽和高的对象。
  48. </p>
  49. <h3>[method:null render]( [param:Scene scene], [param:PerspectiveCamera camera] )</h3>
  50. <p>
  51. 使用[page:PerspectiveCamera perspective camera]渲染[page:Scene scene]。<br />
  52. </p>
  53. <h3>[method:null setSize]([param:Number width], [param:Number height])</h3>
  54. <p>
  55. 将渲染器尺寸重新调整为(width, height)。
  56. </p>
  57. <h2>源代码</h2>
  58. <p>
  59. [link:https://github.com/mrdoob/three.js/blob/master/examples/js/renderers/CSS3DRenderer.js examples/js/renderers/CSS3DRenderer.js]
  60. </p>
  61. </body>
  62. </html>