Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

index.html 546B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>SVG Playground</title>
  6. <link rel="stylesheet" href="style.css">
  7. </head>
  8. <body>
  9. <h1>Transformations</h1>
  10. <p>
  11. Here you can try out our transformation code, try moving around the pink
  12. box in your console with its variable name: <code>mover</code>
  13. </p>
  14. <svg viewBox="0 0 1500 1500" id="canvas"></svg>
  15. </body>
  16. <script src="../../dist/svg.js" charset="utf-8"></script>
  17. <script src="transforms.js" charset="utf-8"></script>
  18. </html>