threepipe
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

index.html 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>GLTF Animation Page Scroll</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. #canvas-container, #mcanvas {
  19. width: 100%;
  20. height: 100%;
  21. margin: 0;
  22. overflow: hidden;
  23. }
  24. body {
  25. overflow-y: scroll;
  26. overflow-x: hidden;
  27. width: 100%;
  28. height: 100%;
  29. margin: 0;
  30. padding: 0;
  31. background-color: white;
  32. }
  33. #canvas-container {
  34. position: fixed;
  35. top: 0;
  36. z-index: 5;
  37. }
  38. #content{
  39. z-index: 10;
  40. position: relative;
  41. height: auto;
  42. }
  43. section{
  44. z-index: 100;
  45. height: 100vh;
  46. line-height: 100vh;
  47. font-size: 4rem;
  48. font-weight: 600;
  49. }
  50. </style>
  51. <script type="module" src="../examples-utils/simple-code-preview.mjs"></script>
  52. <script id="example-script" type="module" src="./script.js" data-scripts="./script.ts;./script.js"></script>
  53. </head>
  54. <body>
  55. <div id="canvas-container">
  56. <canvas id="mcanvas"></canvas>
  57. </div>
  58. <div id="content">
  59. <section>
  60. Section 1
  61. </section>
  62. <section>
  63. Section 2
  64. </section>
  65. <section>
  66. Section 3
  67. </section>
  68. <section>
  69. Section 4
  70. </section>
  71. <section>
  72. Section 5
  73. </section>
  74. <section>
  75. Section 6
  76. </section>
  77. <section>
  78. Section 7
  79. </section>
  80. <section>
  81. Section 8
  82. </section>
  83. <section>
  84. Section 9
  85. </section>
  86. <section>
  87. Section 10
  88. </section>
  89. <section>
  90. Section 11
  91. </section>
  92. <section>
  93. Section 12
  94. </section>
  95. <section>
  96. Section 13
  97. </section>
  98. <section>
  99. Section 14
  100. </section>
  101. <section>
  102. Section 15
  103. </section>
  104. <section>
  105. Section 16
  106. </section>
  107. <section>
  108. Section 17
  109. </section>
  110. <section>
  111. Section 18
  112. </section>
  113. <section>
  114. Section 19
  115. </section>
  116. <section>
  117. Section 20
  118. </section>
  119. <section>
  120. Section 21
  121. </section>
  122. <section>
  123. Section 22
  124. </section>
  125. </div>
  126. </body>