diff --git a/.memory/worklog.json b/.memory/worklog.json index 4508f20..a2077d5 100644 --- a/.memory/worklog.json +++ b/.memory/worklog.json @@ -1,18 +1,5 @@ { "entries": [ - { - "files_changed": 5, - "hash": "6eb1f98", - "message": "auto-save 2026-05-14 03:53 (~5)", - "ts": "2026-05-14T03:53:51+08:00", - "type": "commit" - }, - { - "files_changed": 3, - "message": "Codex 会话活跃 · 最近命令:codex · 3 项未提交变更 · 最近提交:auto-save 2026-05-14 03:53 (~5)", - "ts": "2026-05-13T19:58:49Z", - "type": "session-heartbeat" - }, { "files_changed": 3, "hash": "b95706a", @@ -3260,6 +3247,19 @@ "message": "auto-save 2026-05-15 19:57 (~3)", "hash": "c57e69c", "files_changed": 3 + }, + { + "ts": "2026-05-15T20:03:41+08:00", + "type": "commit", + "message": "auto-save 2026-05-15 20:03 (~4)", + "hash": "cf159be", + "files_changed": 4 + }, + { + "ts": "2026-05-15T12:04:50Z", + "type": "session-heartbeat", + "message": "Codex 会话活跃 · 最近命令:codex · 1 项未提交变更 · 最近提交:auto-save 2026-05-15 20:03 (~4)", + "files_changed": 1 } ] } diff --git a/docs/source-analysis.html b/docs/source-analysis.html index cd406ca..c44b724 100644 --- a/docs/source-analysis.html +++ b/docs/source-analysis.html @@ -595,7 +595,7 @@ web/app/login/page.tsx生产登录页:访问账号/访问密钥表单、保持会话、错误/成功状态;当前只在原版 Digital Oasis 动态背景上叠加一个组合登录框,桌面端左侧是动态角色、右侧是无任何界面文字的图标化登录表单,移动端再回落为上下排列。 web/app/login/layout.tsx登录路由专属 layout:覆盖全站默认网页标题和描述为空,避免 /login 继承工作台 metadata 后在页面源码里继续出现登录界面文字以外的文案。 web/components/login/oasis-canvas.tsx登录页全屏动态视觉层:用 iframe 直接承载下载包 web/public/oasis-source/index.html 的原 WebGPU / Three.js 草场源码;父级登录页只覆盖自己的文案和表单,并在捕获阶段把全局鼠标坐标转发给 iframe,避免登录面板遮挡时草地失去鼠标响应。 - web/public/oasis-source/index.html从下载包 remix-3d-website-the-digital-o 复制来的原始视觉源码。只额外隐藏 demo 站自己的导航、文字和设置面板,保留原 WebGPU 渲染、草场、景深和鼠标交互源码;同时接收父页面 postMessage 指针坐标驱动草地交互。 + web/public/oasis-source/index.html从下载包 remix-3d-website-the-digital-o 复制来的原始视觉源码。嵌入登录页时会隐藏 demo 站自己的导航、文字和设置面板,并把原多段滚动页面锁成单屏固定背景,保留 WebGPU 草场、景深、风动和鼠标交互源码;同时接收父页面 postMessage 指针坐标驱动草地交互。 web/components/login/animated-login-characters.tsx登录页四个几何动态角色组件:当前嵌入登录框顶部,去掉独立网格背景,保留鼠标眼神跟随、输入、显示密码、错误和成功状态反馈。 web/components/nodes/index.tsxDAG 节点定义:Input、VisualLab、Audio、Compose,以及画布工作面板 KeyframePanel / VideoFramePanel;旧 Keyframe/Storyboard/VideoGen 组件保留但不再挂主画布。 web/components/audio-strip.tsx底部吸附音频条:可拖拽调整高度;播放原音频时移动指针,逐个高亮英文/中文字幕节点和对应波形,并在右侧固定显示按原音频时长生成的 SKG 英文产品口播和 MiniMax 随机英文配音。 @@ -946,6 +946,18 @@ SubjectAsset {

变更记录

这个记录不是 git log 的替代品。它记录“产品理解发生了什么变化、影响了哪些源码、你以后描述需求时该怎么说”。后续每次改功能都要补一条。

+
+
+

2026-05-15 · 登录页背景锁定单屏避免底部黑边

+ UI + Login +
+
+

问题:Oasis 原源码仍保留多段滚动页面高度,浏览器滚到最后一段或恢复 iframe 滚动位置时,相机会进入 footer 视角并在登录页底部露出黑边。

+

改动:web/public/oasis-source/index.html 的登录嵌入模式禁用 html/body 滚动,将隐藏的 #scroll-container 固定为单屏,并把隐藏 footer 固定到视口下方且高度归零,避免原脚本触发 canvas 上移。

+

影响:web/public/oasis-source/index.htmldocs/source-analysis.html

+
+

2026-05-15 · 登录框改为动画和表单左右排列

diff --git a/web/public/oasis-source/index.html b/web/public/oasis-source/index.html index 6ba2234..ce38fff 100644 --- a/web/public/oasis-source/index.html +++ b/web/public/oasis-source/index.html @@ -868,10 +868,22 @@ positions for camera state. Visual text/chrome is made transparent so the parent login UI owns all visible text and controls. */ html, body { + height: 100%; min-height: 100%; + overflow: hidden; + } + + #scroll-container { + position: fixed !important; + inset: 0 !important; + height: 100vh !important; + min-height: 100vh !important; + overflow: hidden !important; + opacity: 0 !important; + visibility: hidden !important; + pointer-events: none !important; } - #scroll-container, .nav-float, .nav-mobile-overlay, .site-footer { @@ -880,6 +892,16 @@ pointer-events: none !important; } + .site-footer { + position: fixed !important; + top: 100vh !important; + left: 0 !important; + right: 0 !important; + height: 0 !important; + min-height: 0 !important; + overflow: hidden !important; + } + .settings-gear, .settings-panel, .progress-bar {