index.xhtml 593 B

1234567891011121314151617181920
  1. <!DOCTYPE HTML>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>HTML canvas test</title>
  6. <script src="canvas.js"></script>
  7. <link rel="stylesheet" type="text/css" href="style.css"></link>
  8. </head>
  9. <body>
  10. <canvas id="canvas">Your browser does not support the HTML5 canvas tag.</canvas>
  11. <p style="text-align: center; font-size: 75%;">Move curtain with left mouse button, cut with right mouse button.</p>
  12. <p style="text-align: center; font-size: 50%;">Derived from the "Tearable Cloth" HTML5 canvas demo from CodePen.</p>
  13. </body>
  14. </html>