diff options
Diffstat (limited to 'playgrounds/transforms/index.html')
-rw-r--r-- | playgrounds/transforms/index.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/playgrounds/transforms/index.html b/playgrounds/transforms/index.html new file mode 100644 index 0000000..a165dd9 --- /dev/null +++ b/playgrounds/transforms/index.html @@ -0,0 +1,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> |