21 lines
593 B
HTML
21 lines
593 B
HTML
![]() |
<!DOCTYPE HTML>
|
|||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|||
|
<head>
|
|||
|
<meta charset="utf-8" />
|
|||
|
<title>HTML canvas test</title>
|
|||
|
<script src="canvas.js"></script>
|
|||
|
<link rel="stylesheet" type="text/css" href="style.css"></link>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
|
|||
|
<canvas id="canvas">Your browser does not support the HTML5 canvas tag.</canvas>
|
|||
|
|
|||
|
<p style="text-align: center; font-size: 75%;">Move curtain with left mouse button, cut with right mouse button.</p>
|
|||
|
|
|||
|
<p style="text-align: center; font-size: 50%;">Derived from the "Tearable Cloth" HTML5 canvas demo from CodePen.</p>
|
|||
|
|
|||
|
|
|||
|
</body>
|
|||
|
</html>
|
|||
|
|