material-table.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html><html lang="en"><head>
  2. <meta charset="utf-8">
  3. <title>Material Feature Table</title>
  4. <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
  5. <meta name="twitter:card" content="summary_large_image">
  6. <meta name="twitter:site" content="@threejs">
  7. <meta name="twitter:title" content="Three.js – Material Feature Table">
  8. <meta property="og:image" content="https://threejs.org/files/share.png">
  9. <link rel="shortcut icon" href="/files/favicon_white.ico" media="(prefers-color-scheme: dark)">
  10. <link rel="shortcut icon" href="/files/favicon.ico" media="(prefers-color-scheme: light)">
  11. <link rel="stylesheet" href="/manual/resources/lesson.css">
  12. <link rel="stylesheet" href="/manual/resources/lang.css">
  13. <!-- Import maps polyfill -->
  14. <!-- Remove this when import maps will be widely supported -->
  15. <script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
  16. <script type="importmap">
  17. {
  18. "imports": {
  19. "three": "../../build/three.module.js"
  20. }
  21. }
  22. </script>
  23. </head>
  24. <body>
  25. <div class="container">
  26. <div class="lesson-title">
  27. <h1>Material Feature Table</h1>
  28. </div>
  29. <div class="lesson">
  30. <div class="lesson-main">
  31. <p>The most common materials in three.js are the Mesh materials. Here
  32. is a table showing which material support which features.</p>
  33. <div>
  34. <div id="material-table" class="threejs_center"></div>
  35. <script type="module" src="../resources/threejs-material-table.js"></script>
  36. <link rel="stylesheet" href="../resources/threejs-material-table.css">
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. <script src="/manual/resources/prettify.js"></script>
  42. <script src="/manual/resources/lesson.js"></script>
  43. </body></html>