threepipe
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.html 1.2KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Tweakpane Editor</title>
  6. <!-- Import maps polyfill -->
  7. <!-- Remove this when import maps will be widely supported -->
  8. <script async src="https://unpkg.com/es-module-shims@1.6.3/dist/es-module-shims.js"></script>
  9. <!-- Fonts -->
  10. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
  11. <link href="https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@master/Gilroy-Extrabold.css" rel="stylesheet">
  12. <script type="importmap">
  13. {
  14. "imports": {
  15. "threepipe": "./../../dist/index.mjs",
  16. "@threepipe/plugin-tweakpane": "./../../plugins/tweakpane/dist/index.mjs",
  17. "@threepipe/plugin-tweakpane-editor": "./../../plugins/tweakpane-editor/dist/index.mjs"
  18. }
  19. }
  20. </script>
  21. <style id="example-style">
  22. html {
  23. display: block;
  24. }
  25. </style>
  26. <script type="module" src="../examples-utils/simple-code-preview.mjs"></script>
  27. <script id="example-script" type="module" src="./script.js" data-scripts="./script.ts;./script.js"></script>
  28. </head>
  29. <body>
  30. <div id="canvas-container">
  31. <canvas id="mcanvas"></canvas>
  32. </div>
  33. </body>