文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

怎么在微信小程序中实现一个视频弹幕效果

2023-06-14 22:34

关注

本篇文章为大家展示了怎么在微信小程序中实现一个视频弹幕效果,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。

wxml代码

<!--pages/study/video/videoplay/videoplay.wxml--><view class="page-body">  <view class="page-section tc">    <video       id="myVideo"       src="http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400"       binderror="videoErrorCallback"       danmu-list="{{danmuList}}"       enable-danmu       danmu-btn       show-center-play-btn='{{false}}'       show-play-btn="{{true}}"       controls      picture-in-picture-mode="{{['push', 'pop']}}"      bindenterpictureinpicture='bindVideoEnterPictureInPicture'      bindleavepictureinpicture='bindVideoLeavePictureInPicture'    ></video>    <view  class="weui-label">弹幕内容</view>    <input bindblur="bindInputBlur" class="weui-input" type="text" placeholder="在此处输入弹幕内容" />    <button   bindtap="bindSendDanmu" class="page-body-button" type="primary" formType="submit">发送弹幕</button>    <navigator   url="picture-in-picture" hover-class="other-navigator-hover">      <button type="primary" class="page-body-button" bindtap="bindPlayVideo">小窗模式</button>    </navigator>  </view></view>

js代码

// pages/study/video/videoplay/videoplay.jsvar that;function getRandomColor() {  const rgb = []  for (let i = 0; i < 3; ++i) {    let color = Math.floor(Math.random() * 256).toString(16)    color = color.length === 1 ? '0' + color : color    rgb.push(color)  }  return '#' + rgb.join('')} Page({  onShareAppMessage() {    return {      title: 'video',      path: 'page/component/pages/video/video'    }  },   onReady() {    that = this;    this.videoContext = wx.createVideoContext('myVideo')  },   onHide() {   },   inputValue: '',  data: {    src: '',    danmuList:    [{      text: '第 1s 出现的弹幕',      color: '#ff0000',      time: 1    }, {      text: '第 3s 出现的弹幕',      color: '#ff00ff',      time: 3    }],  },   bindInputBlur(e) {    this.inputValue = e.detail.value  },   bindButtonTap() {    const that = this    wx.chooseVideo({      sourceType: ['album', 'camera'],      maxDuration: 60,      camera: ['front', 'back'],      success(res) {        that.setData({          src: res.tempFilePath        })      }    })  },   bindVideoEnterPictureInPicture() {    console.log('进入小窗模式')  },   bindVideoLeavePictureInPicture() {    console.log('退出小窗模式')  },   bindPlayVideo() {    this.videoContext.play()  },  bindSendDanmu() {    // 利用循环和随机数调整位置    var ranNum = Math.floor(Math.random()*10);    var danmuList = [];    for (let index = 0; index < 10; index++) {      danmuList.push('');    }    danmuList[ranNum] = this.inputValue;    for (let index = 0; index < danmuList.length; index++) {      this.videoContext.sendDanmu({        text: danmuList[index],        color: '#ff0000'      });    }  },   videoErrorCallback(e) {    console.log('视频错误信息:')    console.log(e.detail.errMsg)  }})

上述内容就是怎么在微信小程序中实现一个视频弹幕效果,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯