树叶edit icon

创建者:
流光
Fork(复制)
下载
嵌入
BUG反馈
index.html
main.js
package.json
index.html
            
            <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <style>
    body,
    html,
    canvas {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    canvas {
        position: absolute;
        top: 0;
        left: 0;
    }
  </style>
</head>
<body>
   <canvas id="scene" style="z-index: 1;"></canvas>
  <button id="stop" style="position: relative;z-index: 999;">暂停动画</button>
  <script src="./main.js"></script>
</body>
</html>
        
编辑器加载中
预览
控制台