Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
blob: d97baeedab2aa7374421800af3128f39fb474eae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
    <title>SVG Element Pan & Zoom Demo</title>
    <link rel="stylesheet" href="assets/css/style.css">
  </head>
  <body>
    <h1>Pan & Zoom SVG Element with CSS/JavaScript</h1>

    <p>
      Click and drag the image to pan. Use the mouse wheel to zoom in and out.
    </p>

    <object type="image/svg+xml" data="assets/images/image.svg"></object>
    <script src="app.js"></script>
  </body>
</html>