three实现本地glb加载三维人物Skeleton骨骼节点编辑动作导出代码

代码语言:html

所属分类:三维

代码描述:three实现本地glb加载三维人物Skeleton骨骼节点编辑动作导出代码

代码标签: three 本地 glb 加载 三维 人物 Skeleton 骨骼 节点 编辑 动作 导出 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Three.js Interactive GLB Editor</title>
    <style>
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            color: #fff;
            background-color: #1a1a1a;
            overflow: hidden; /* Hide scrollbars */
        }
        #info-panel {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 15px;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 8px;
            width: 300px;
            max-height: 95vh;
            overflow-y: auto;
            border: 1px solid #444;
        }
        h2 {
            margin-top: 0;
            border-bottom: 1px solid #555;
            padding-bottom: 10px;
        }
        .control-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        input[type="file"], select, button {
            width: 100%;
            padding: 8px;
            border-radius: 4px;
            border: 1px solid #666;
            background-color: #333;
            color: #fff;
            box-sizing: border-box; /* Ensures padding doesn't affect width */
        }
        input[type="file"] {
            padding: 4px;
        }
        button {
            cursor: pointer;
            background-color: #007bff;
            border: none;
            font-weight: bold;
            transition: background-color 0.2s;
        }
        button:hover {
            background-color: #0056b3;
        }
        button:disabled {
            background-color: #555;
            cursor: not-allowed;
        }
        #bone-controls {
            display: none; /* Hidden by default */
        }
    </style>
</head>
<body>

    <div id="info-panel">
        <h2>GLB Animation Tool</h2>
        
        <div class="control-group">
            <label for="file-input">1. Load Your Model</label>
            <input type="file" id="file-input" accept=".glb">
        </div>

        <div id="bone-controls" class="control-group">
            <label for="bone-select">2. Adjust Skeleton (Optional)</label>
            <p style="font-size: 0.8em; color: #ccc; margin-top: 0;">Select a bone .........完整代码请登录后点击上方下载按钮下载查看

网友评论0