mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 12:08:13 +08:00
65ac422ed6
* 补充容错 * fix: form 中 name 关联顶层数据初始化失效 * 更新 examples * 文档调整 * 删除多余的文档, 调整 schema * schema 调整 * schema 调整 * control 类型容器 control 改成 body * 修复一个选项加载的bug * form 注册直接用 type
23 lines
570 B
JavaScript
23 lines
570 B
JavaScript
export default {
|
|
title: '视频播放器',
|
|
body: [
|
|
'<p class="text-danger">另外还支持直播流, flv 和 hls 格式</p>',
|
|
{
|
|
type: 'video',
|
|
autoPlay: false,
|
|
rates: [1.0, 1.5, 2.0],
|
|
jumpFrame: true,
|
|
jumpBufferDuration: 5,
|
|
frames: {
|
|
'00:10': '',
|
|
'00:20': '',
|
|
'00:30': ''
|
|
},
|
|
src:
|
|
'https://amis.bj.bcebos.com/amis/2019-12/1577157317579/trailer_hd.mp4',
|
|
poster:
|
|
'https://internal-amis-res.cdn.bcebos.com/images/2019-12/1577157239810/da6376bf988c.png'
|
|
}
|
|
]
|
|
};
|