| 1234567891011121314151617181920 |
- @page "/"
- @page "/index.html"
- @inject IJSRuntime JsRuntime
- @using nkast.Wasm.Canvas
- <PageTitle>Animation</PageTitle>
- <div id="canvasHolder" style="
- background: #000;
- margin:0%;
- position: fixed;
- top: 0px;
- right: 0px;
- bottom: 0px;
- left: 0px;
- width:100vw;
- height:100vh;
- ">
- <canvas id="theCanvas" style="touch-action:none;"></canvas>
- </div>
|