summaryrefslogtreecommitdiffstats
path: root/playgrounds/transforms/transforms.html
blob: a165dd90b16fc7d33f1e86d399ba612c9a77bfcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>

  <head>
    <meta charset="utf-8">
    <title>SVG Playground</title>
    <link rel="stylesheet" href="../playground.css">
  </head>

  <body>

    <h1>Transformations</h1>

    <p>
      Here you can try out our transformation code, try moving around the pink
      box in your console with its variable name: <code>mover</code>
    </p>

    <svg viewBox="0 0 1500 1500" id="canvas"></svg>

  </body>

  <script src="../../dist/svg.js" charset="utf-8"></script>
  <script src="transforms.js" charset="utf-8"></script>

</html>