国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

ionic2手寫制作video的控制欄,app

Gu_Yan / 2367人閱讀

摘要:當前的播放進度條的寬度等于當前播放時間視頻總長度。三點擊進度條位置跳轉(zhuǎn)到指定視頻播放的位置鼠標在播放條上點擊時進行捕獲并進行處理播放





  
    
    
    
{{currentTime*1000 | date:"mm:ss"}}
{{ durationLength*1000 | date:"mm:ss" }}

試學結(jié)束,請購買后學習完整課程

**

一:控制視頻播放暫停

**
//點擊播放或者暫停
runPlay(){

this.myVideo = this.runtime.plugins.JQuery("#videoAttr");
if(this.myVideo[0].paused){
  this.myVideo[0].play();
  this.progressFlag = setInterval(() =>{
    this.getProgress();
  },1000);
  this.isPlay = true;//播放暫停按鈕切換
  this.runtime.plugins.JQuery(".arrowback2").remove();

}else{
  //暫停播放
  this.myVideo[0].pause();
  clearInterval(this.progressFlag);
  this.isPlay = false;
}

}

二:試看功能,播放進度條功能

//獲取進度條
getProgress(){

this.myVideo = this.runtime.plugins.JQuery("#videoAttr");
this.progressWrap = this.runtime.plugins.JQuery(".progressWrap");
this.playProgress = this.runtime.plugins.JQuery(".playProgress");
this.durationLength = this.myVideo[0].duration;
this.currentTime = this.myVideo[0].currentTime;
console.log("666",this.currentTime);
this.percent = this.currentTime / this.durationLength;      //獲取視頻播放到百分比
this.playProgress.width(this.percent * (this.progressWrap[0].offsetWidth));
//試看時間控制
if(parseInt(this.currentTime) == 1000){
  this.runtime.plugins.JQuery(".video-bg").css("display","block");
  this.myVideo[0].pause();
}

}
當前視頻播放到10s后如果未購買,要購買才能看完整視頻。
當前的播放進度條的寬度等于當前播放時間/視頻總長度。

三:點擊進度條位置 跳轉(zhuǎn)到指定視頻播放的位置

// 鼠標在播放條上點擊時進行捕獲并進行處理
videoSeek(e){

clearInterval(this.progressFlag);
this.progressWrap = this.runtime.plugins.JQuery(".progressWrap");
this.playProgress = this.runtime.plugins.JQuery(".playProgress");
var length = e.pageX - this.progressWrap[0].offsetLeft;
this.percent = length / this.progressWrap[0].offsetWidth;
this.playProgress.width(this.percent * (this.progressWrap[0].offsetWidth));
this.myVideo[0].currentTime = this.percent * this.myVideo[0].duration;
this.myVideo[0].play();//播放
this.progressFlag = setInterval(() =>{
  this.getProgress();
},1000);

}

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/92946.html

相關(guān)文章

  • ionic2實現(xiàn)透明狀態(tài)和透明工具

    摘要:抽時間寫了個,你想要的都在這里了。你可以狠狠的點擊下面的鏈接去往倉庫地址,一探究竟。你可以直接下來,直接運行。 ionic2實現(xiàn)透明狀態(tài)欄和透明工具欄 目錄 如何實現(xiàn)? 集成DEMO(2017/4/1更新) 簡短的分析 一個額外的小栗子 我想讓狀態(tài)欄變色怎么辦? 為什么這么做? 總結(jié) 以下是我的方案,不繞彎子,直接上實現(xiàn)過程.首先貼效果圖,來張gif(2017/4/1更新)show...

    wenshi11019 評論0 收藏0
  • Ionic2入坑基礎(chǔ)教程和安裝指南

    摘要:安裝程序主要通過命令行工具來創(chuàng)建和開發(fā),并使用來構(gòu)建和部署為原生應用程序。基礎(chǔ)教程確保完成之前的安裝并測試啟動成功。 安裝Ionic Ionic 2 程序主要通過Ionic命令行工具CLI來創(chuàng)建和開發(fā),并使用Cordova來構(gòu)建和部署為原生應用程序。也就是說我們需要先安裝一些工具來實現(xiàn)程序開發(fā)。 安裝Ionic CLI 和 Cordova 要創(chuàng)建 Ionic 2 項目,你需要安裝最新版...

    jayce 評論0 收藏0
  • HTML5 video視頻字幕使用和制作

    摘要:首先先看一下原生對字幕的支持顯示情況元素允許我們使用元素為視頻指定字幕。和忽略元素上的屬性,而是嘗試將瀏覽器的語言與字幕的語言相匹配案例展示參考資料張鑫旭文件生成器如果覺得還不錯,還請給我一個贊鼓勵一下 首先先看一下原生HTML5 video對字幕的支持顯示情況: showImg(https://segmentfault.com/img/bV80HD?w=429&h=248); 元素 ...

    Rocko 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<