视频。

属性及支持度

H5ReactNative属性名类型默认值说明
xsrcString要播放视频的资源地址
xcontrolsBooleantrue是否显示默认播放控件(播放/暂停按钮、播放进度、时间)
xautoplayBooleanfalse是否自动播放
xposterString视频封面的图片网络资源地址,如果 controls 属性值为 false 则设置 poster 无效
xinitialTimeNumber指定视频初始播放位置
xloopBooleanfalse是否循环播放
xmutedBooleanfalse是否静音播放
xonPlayEventHandle当开始/继续播放时触发 play 事件
xonPauseEventHandle当暂停播放时触发 pause 事件
xonEndedEventHandle当播放到末尾时触发 ended 事件
xonTimeUpdateEventHandle播放进度变化时触发。触发频率 250ms 一次
xonErrorEventHandle视频播放出错时触发

其他相关属性请看各小程序官方文档

微信小程序 Video

百度小程序 Video

字节跳动小程序 Video

示例:
  1. import Taro, { Component } from '@tarojs/taro'
  2. import { View, Video } from '@tarojs/components'
  3. export default class PageView extends Component {
  4. constructor() {
  5. super(...arguments)
  6. }
  7. render() {
  8. return (
  9. <View className='components-page'>
  10. <Video
  11. src='http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400'
  12. controls={true}
  13. autoplay={false}
  14. poster='http://misc.aotu.io/booxood/mobile-video/cover_900x500.jpg'
  15. initialTime='0'
  16. id='video'
  17. loop={false}
  18. muted={false}
  19. />
  20. </View>
  21. )
  22. }
  23. }