Skip to main content

InfoPanel

Function Description

Information Panel (InfoPanel ) provides the ability to display clips like pictures and videos in panel form and their built-in style modifications.

Effect Display

Use Instructions

You can use the information panel feature whenever needed.

If you want to customize the panel style, you need to override the original style.

Field description

信息面板帧剧本结构
{
"uuid": "94a3e6c6-096c-46b6-9713-5f635f679a04",
"type": "InfoPanel",
"start": 3783,
"end": 6700,
"parsed": false,
"data": InfoPanelData
}
信息面板数据说明
// Panel content type
export enum InfoPanelTypeEnum {
Image = "Image",
Video = "Video",
}

// Panel animation
export enum InfoPanelStyleEnum {
Drawer = "Drawer",
PopUp = "PopUp",
}

export type InfoPanelData = {
type: InfoPanelTypeEnum;
style?: InfoPanelStyleEnum;
url: string;
title?: string; // title
subTitle?: string; // subtitle
};