Test.razor 463 B

1234567891011
  1. @page "/test"
  2. <h3>Test</h3>
  3. <!-- Using solid border-style to highlight the image's panning & zooming boundary -->
  4. <div class="my-main" style="border-style: solid; width:contain; height:contain;">
  5. <Panzoom>
  6. <!-- Must set the element's reference (@ref)! -->
  7. <img @ref="@context.ElementReference" src="https://kemono.party/data/b3/91/b391307fe96576f4d3393cfc69dbd10ea6b7e0341e7cc971bcb900bb2b84a8d0.jpg" alt="image" />
  8. </Panzoom>
  9. </div>