threepipe
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

index.html 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>KTX Texture Load</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. }
  15. }
  16. </script>
  17. <style id="example-style">
  18. html, body, #canvas-container, #mcanvas {
  19. width: 100%;
  20. height: 100%;
  21. margin: 0;
  22. overflow: hidden;
  23. }
  24. p{
  25. position: absolute;
  26. top: 5%;
  27. left: 50%;
  28. transform: translate(-50%, -50%);
  29. font-size: 1.25em;
  30. color: #8cd55b;
  31. font-family: sans-serif;
  32. pointer-events: none;
  33. }
  34. </style>
  35. <script type="module" src="../examples-utils/global-loading.mjs"></script>
  36. <script type="module" src="../examples-utils/simple-code-preview.mjs"></script>
  37. <script id="example-script" type="module" src="./script.js" data-scripts="./script.ts;./script.js"></script>
  38. </head>
  39. <body>
  40. <div id="canvas-container">
  41. <p>Drop .ktx files here</p>
  42. <canvas id="mcanvas"></canvas>
  43. </div>
  44. </body>