71 lines
1.4 KiB
HTML
71 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>SDK 模块化加载示例</title>
|
||
</head>
|
||
|
||
<body>
|
||
<style>
|
||
* {
|
||
margin: 0;
|
||
padding: 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
body {
|
||
font-family: Arial, sans-serif;
|
||
overflow: hidden;
|
||
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
|
||
}
|
||
|
||
#app {
|
||
width: 100vw;
|
||
height: 100vh;
|
||
position: relative;
|
||
}
|
||
|
||
#renderDom {
|
||
width: 100%;
|
||
height: 100%;
|
||
display: block;
|
||
}
|
||
</style>
|
||
<canvas id="renderDom"></canvas>
|
||
|
||
<!-- 模块化:Dev 使用 /src/main.ts,构建后改为 /assets/index.js -->
|
||
<script type="module">
|
||
|
||
import { kernel } from 'https://sdk.zguiy.com/zt/assets/index.js';
|
||
const config = {
|
||
container: 'renderDom',
|
||
modelUrlList: ['./public/model/model.glb'],
|
||
env: { envPath: './public/hdr/hdr.env', intensity: 1.2, rotationY: 0.3 },
|
||
};
|
||
|
||
kernel.init(config);
|
||
|
||
|
||
kernel.on('model:load:progress', (data) => {
|
||
console.log('模型加载事件', data);
|
||
});
|
||
|
||
|
||
|
||
kernel.on('model:loaded', (data) => {
|
||
console.log('模型加载完成', data);
|
||
});
|
||
|
||
|
||
|
||
kernel.on('model:click', (data) => {
|
||
console.log('模型点击事件', data);
|
||
});
|
||
|
||
|
||
</script>
|
||
</body>
|
||
|
||
</html> |