Displays a base image and an "x-ray" view of a second image where the mouse is pointing
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <!DOCTYPE html>
- <html lang="en">
-
- <head>
- <meta charset="utf-8">
- <title>X-ray Viewer</title>
- <link rel="stylesheet" href="xray.css">
- <script src="xray.js"></script>
- <meta name="theme-color" content="#000000" />
- <meta name="description" content="rip Flash lol" />
- <meta property="og:title" content="X-ray Viewer" />
- <meta property="og:description" content="rip Flash lol" />
- </head>
-
- <body>
- <canvas id="overlay"></canvas>
- <canvas id="base"></canvas>
- <img id="overlay-img" src="overlay.png">
- <img id="base-img" src="base.png">
- </body>
|