Files
zhengte.babylonjs-sdk/index.html
yinsx 58cd883720
All checks were successful
continuous-integration/drone/push Build is passing
修复
2026-01-05 14:11:45 +08:00

39 lines
1.1 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>3D模型展示SDK - TS版</title>
<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>
</head>
<body>
<div id="app">
<canvas id="renderDom"></canvas>
</div>
<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: '/hdr/hdr.env', intensity: 1.2, rotationY: 0.3 },
onSuccess: () => console.log('SDK initialized (module)'),
onError: (err) => console.error('SDK init error', err),
};
kernel.init(config);
</script>
</body>
</html>