threepipe
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Pointer Lock Controls 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. }
  16. }
  17. </script>
  18. <style id="example-style">
  19. html, body, #canvas-container, #mcanvas {
  20. width: 100%;
  21. height: 100%;
  22. margin: 0;
  23. overflow: hidden;
  24. }
  25. #pointerLockOverlay{
  26. position: absolute; top: 0; left: 0; right: 0; bottom: 0; height: 100%; width: 100%;
  27. display: flex; justify-content: center; align-items: center; pointer-events: none;
  28. font-size: 1.5rem; background: rgba(240,240,240,0.5); color: #333333;
  29. backdrop-filter: blur(16px);
  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 id="pointerLockOverlay">
  39. Tap/Click the screen to enable pointer lock controls
  40. </div>
  41. </div>
  42. </body>