VideoContext.seek

解释:跳转到指定位置(单位:s)

方法参数

Number position

示例

在开发者工具中预览效果

扫码体验

VideoContext.seek - 图1请使用百度APP扫码

图片示例

VideoContext.seek - 图2

VideoContext.seek - 图3

VideoContext.seek - 图4

代码示例

  • 在 swan 文件中
  1. <view class="wrap">
  2. <video id="myVideo" enable-danmu="true" src="https://b.bdstatic.com/swan-temp/940fe716b0eaad38f47b209d61657490.mp4"></video>
  3. <button type="primary" bindtap="seek">seek</button>
  4. </view>
  • 在 js 文件中
  1. Page({
  2. data: { },
  3. onLoad() {
  4. const videoContext = swan.createVideoContext('myVideo');
  5. this.videoContext = videoContext;
  6. this.videoContext.play();
  7. },
  8. seek() {
  9. this.videoContext.seek(180);
  10. }
  11. });