Skip to content

嵌入 iframe(如视频)

iframe 受 sandbox自动播放 与 CSP 约束,可与 第 29 课 的嵌入主题对照。

若需离线导出缩略图,可考虑截帧策略。

交互示例

使用 <iframe> 嵌入 YouTube

ts
const node = {
    id: 'embed-1',
    type: 'embed',
    url: 'https://www.youtube.com/watch?v=37fvFffAmf8',
    x: 100,
    y: 100,
    width: 800,
    height: 450,
    lockAspectRatio: true,
};

Released under the MIT License.