Displays a base image and an "x-ray" view of a second image where the mouse is pointing
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

41 satır
1.3 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>X-ray Viewer</title>
  6. <link rel="stylesheet" href="xray.css">
  7. <script src="xray.js"></script>
  8. <meta name="theme-color" content="#000000" />
  9. <meta name="description" content="rip Flash lol" />
  10. <meta property="og:title" content="X-ray Viewer" />
  11. <meta property="og:description" content="rip Flash lol" />
  12. </head>
  13. <body>
  14. <div id="menu" class="start">
  15. <label>
  16. Base:
  17. <input type="text" id="base-url" placeholder="URL for base image">
  18. </label>
  19. <label>
  20. Overlay:
  21. <input type="text" id="overlay-url" placeholder="URL for overlay image">
  22. </label>
  23. <button id="load-button">Load</button>
  24. <label class="nostart">
  25. Radius:
  26. <input type="number" id="radius" placeholder="200" value="200">
  27. </label>
  28. <label class="nostart">
  29. Softness:
  30. <input type="range" id="softness" min="0" max="100" value="25">
  31. </label>
  32. <button id="share-button" class="nostart">Share</button>
  33. </div>
  34. <canvas class="hidden" id="overlay"></canvas>
  35. <canvas class="hidden" id="base"></canvas>
  36. <img id="overlay-img" src="overlay.png">
  37. <img id="base-img" src="base.png">
  38. </body>