Index.razor 382 B

1234567891011121314151617181920
  1. @page "/"
  2. @page "/index.html"
  3. @inject IJSRuntime JsRuntime
  4. @using nkast.Wasm.Canvas
  5. <PageTitle>Animation</PageTitle>
  6. <div id="canvasHolder" style="
  7. background: #000;
  8. margin:0%;
  9. position: fixed;
  10. top: 0px;
  11. right: 0px;
  12. bottom: 0px;
  13. left: 0px;
  14. width:100vw;
  15. height:100vh;
  16. ">
  17. <canvas id="theCanvas" style="touch-action:none;"></canvas>
  18. </div>