123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- html,
- body{
- width: 100%;
- height: 100%;
- margin: 0;
- overflow: hidden;
- }
- .scene{
- /* height: 100%;
- float: left;
- width: 50%; */
- width: 100%;
- height: 100%;
- }
- </style>
- </head>
- <body>
- <div id="scene" class="scene"></div>
- <script src="../dist/sdk/kankan-sdk-deps.js"></script>
- <script src="../dist/sdk/kankan-sdk.js"></script>
- <script>
- var kankan = new KanKan({
- dom:'#scene',
- num:'t-YhBCzQr' //'t-AQyvWk7pC6' //'tSrGwEa0n'
- })
- kankan.use("Controls")
- kankan.use("EditCAD")
- kankan.render()
-
- </script>
- </body>
- </html>
|