threepipe
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.html 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Material Configurator Plugin</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <!-- Import maps polyfill -->
  8. <!-- Remove this when import maps will be widely supported -->
  9. <script async src="https://unpkg.com/es-module-shims@1.6.3/dist/es-module-shims.js"></script>
  10. <script type="importmap">
  11. {
  12. "imports": {
  13. "threepipe": "./../../dist/index.mjs",
  14. "@threepipe/plugin-tweakpane": "./../../plugins/tweakpane/dist/index.mjs",
  15. "@threepipe/plugin-configurator": "./../../plugins/configurator/dist/index.mjs"
  16. }
  17. }
  18. </script>
  19. <style id="example-style">
  20. html, body, #canvas-container, #mcanvas {
  21. width: 100%;
  22. height: 100%;
  23. margin: 0;
  24. overflow: hidden;
  25. }
  26. #gridItemList{
  27. /*because of the code preview button*/
  28. top: 50px !important;
  29. height: calc(100% - 50px) !important;
  30. }
  31. </style>
  32. <script type="module" src="../examples-utils/simple-code-preview.mjs"></script>
  33. <script id="example-script" type="module" src="./script.js" data-scripts="./script.ts;./script.js"></script>
  34. </head>
  35. <body>
  36. <div id="canvas-container">
  37. <canvas id="mcanvas"></canvas>
  38. </div>
  39. </body>