video
视频播放器
属性
属性名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
src | String | 否 | 要播放视频的资源地址 | |
cstyle | String | 否 | 自定义image的样式,如 "height:100cpx;width:100cpx;" | |
autoplay | Boolean | 否 | false | 是否自动播放 |
controls | Boolean | 否 | false | 是否显示默认播放控件(播放/暂停按钮、播放进度、时间)(只对wx有效) |
c-bind:start | EventHandle | 否 | 当开始/继续播放时触发start事件 | |
c-bind:pause | EventHandle | 否 | 当暂停播放时触发 pause 事件 | |
c-bind:finish | EventHandle | 否 | 当播放到末尾时触发 finish 事件 | |
c-bind:fail | EventHandle | 否 | 视频播放出错时触发 fail |
示例
<template>
<view class="container">
<video
class="video"
src="{{videoSrc}}"
autoplay="{{true}}"
controls="{{true}}"
c-bind:start="onstart"
c-bind:pause="onpause"
c-bind:finish="onfinish"
c-bind:fail="onfail"
>
</video>
</view>
</template>
<script>
import cml from 'chameleon-api'
class Video {
data = {
videoSrc: 'http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400',
state: '----',
}
}
export default new Video();
</script>
<style scoped>
.video {
width: 720cpx;
height: 350cpx;
margin-top: 60cpx;
}
</style>
<script cml-type="json">
{
"base": {}
}
</script>
Bug & Tip
<text>
是唯一合法的子组件。