amis/docs/components/video.md

33 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2020-07-28 10:03:53 +08:00
---
title: Video 视频
2020-08-04 19:21:46 +08:00
description:
2020-07-28 10:03:53 +08:00
type: 0
group: ⚙ 组件
menuName: Video
2020-08-04 19:21:46 +08:00
icon:
2020-07-28 10:03:53 +08:00
order: 71
---
2019-05-08 22:55:41 +08:00
2020-08-04 19:21:46 +08:00
## 基本用法
2020-07-28 10:03:53 +08:00
```schema:height="500" scope="body"
{
"type": "video",
"src": "raw:https://amis.bj.bcebos.com/amis/2019-12/1577157317579/trailer_hd.mp4",
"poster": "raw:https://internal-amis-res.cdn.bcebos.com/images/2019-12/1577157239810/da6376bf988c.png"
}
```
## 属性表
2019-05-08 22:55:41 +08:00
2020-08-04 19:21:46 +08:00
| 属性名 | 类型 | 默认值 | 说明 |
| --------- | --------- | --------- | -------------------------------------------------------- |
| type | `string` | `"video"` | 指定为 video 渲染器 |
| className | `string` | | 外层 Dom 的类名 |
| src | `string` | | 视频地址 |
| isLive | `boolean` | false | 是否为直播,视频为直播时需要添加上,支持`flv`和`hls`格式 |
| poster | `string` | | 视频封面地址 |
| muted | `boolean` | | 是否静音 |
| autoPlay | `boolean` | | 是否自动播放 |
| rates | `array` | | 倍数,格式为`[1.0, 1.5, 2.0]` |