1 | import { ComponentType } from 'react'
|
2 | import { StandardProps } from './common'
|
3 | interface AnimationVideoProps extends StandardProps {
|
4 | /** 组件使用的 video 视频资源的宽度(单位:px)
|
5 | * @supported swan
|
6 | * @default 800
|
7 | */
|
8 | resourceWidth?: number
|
9 | /** 组件使用的 video 视频资源的高度(单位:px)
|
10 | * @supported swan
|
11 | * @default 400
|
12 | */
|
13 | resourceHeight?: number
|
14 | /** 用于设置动画画布的 CSS 样式
|
15 | * @supported swan
|
16 | * @default "width: 400px;height: 400px"
|
17 | */
|
18 | canvasStyle?: string
|
19 | /** 动画资源地址,支持相对路径以及远程地址。如果是远程路径,注意 response header 里需要设置 Access-Control-Allow-Origin 来防止跨域问题
|
20 | * @supported swan
|
21 | */
|
22 | path?: string
|
23 | /** 动画是否循环播放
|
24 | * @supported swan
|
25 | * @default false
|
26 | */
|
27 | loop?: boolean
|
28 | /** 动画是否自动播放
|
29 | * @supported swan
|
30 | * @default false
|
31 | */
|
32 | autoplay?: boolean
|
33 | /** 视频资源中 alpha 通道的方向,left 表示 alpha 通道在资源的左边,right 表示 alpha 通道在资源的右边。详情请参考透明视频设计资源示例
|
34 | * @supported swan
|
35 | * @default "left"
|
36 | */
|
37 | alphaDirection?: string
|
38 | /** 动画开始播放的回调
|
39 | * @supported swan
|
40 | */
|
41 | onStarted?: CommonEventFunction
|
42 | /** 当播放到末尾时触发 ended 事件(自然播放结束会触发回调,循环播放结束及暂停动画不会触发)
|
43 | * @supported swan
|
44 | */
|
45 | onEnded?: CommonEventFunction
|
46 | }
|
47 | /** 透明视频动画
|
48 | * @classification media
|
49 | * @supported swan
|
50 | * @see https://smartprogram.baidu.com/docs/develop/component/animation-video/
|
51 | */
|
52 | declare const AnimationVideo: ComponentType<AnimationVideoProps>
|
53 | export { AnimationVideo, AnimationVideoProps }
|