码迷,mamicode.com
首页 > 微信 > 详细

第七篇、微信小程序-video组件

时间:2016-10-23 02:44:32      阅读:366      评论:0      收藏:0      [点我收藏+]

标签:接口   splay   返回   column   效果   eth   function   ndt   margin   

主要属性:

技术分享

效果图:

技术分享

 

ml:

<View>1.播放网络视频</View>
<view >
  <video style="width: 100%;height=400px;margin:1px;" src="http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400" binderror="videoErrorCallback"></video>
</view>
<View>2.播放本地视频</View>
<view  style="display: flex;flex-direction: column;">
  <video  style="width: 100%;height=400px;margin:1px;" src="{{src}}"></video>
  <view class="btn-area">
    <button bindtap="bindButtonTap">打开本地视频</button>
  </view>
</view>

 

js:

Page({
    data: {
        src: ‘‘
    },
    /**
     * 打开本地视频
     */
    bindButtonTap: function() {
        var that = this
        //拍摄视频或从手机相册中选视频
        wx.chooseVideo({
           //album 从相册选视频,camera 使用相机拍摄,默认为:[‘album‘, ‘camera‘]
            sourceType: [‘album‘, ‘camera‘],
            //拍摄视频最长拍摄时间,单位秒。最长支持60秒
            maxDuration: 60,
            //前置或者后置摄像头,默认为前后都有,即:[‘front‘, ‘back‘]
            camera: [‘front‘,‘back‘],
            //接口调用成功,返回视频文件的临时文件路径,详见返回参数说明
            success: function(res) {
              console.log(res.tempFilePaths[0])
                that.setData({
                    src: res.tempFilePaths[0]
                })
            }
        })
    },
    /**
     * 当发生错误时触发error事件,event.detail = {errMsg: ‘something wrong‘}
     */
    videoErrorCallback: function(e) {
      console.log(‘视频错误信息:‘)
      console.log(e.detail.errMsg)
    }
})

 

第七篇、微信小程序-video组件

标签:接口   splay   返回   column   效果   eth   function   ndt   margin   

原文地址:http://www.cnblogs.com/HJQ2016/p/5988699.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!