當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


p5.js currentTime()用法及代碼示例


currentTime()函數是p5.js庫中的內置函數。此函數用於以第二種格式返回聲音文件的當前時間,該時間在網絡上播放。如果已經調用了reverseBuffer,那麽當前時間將開始倒數。句法:

currentTime()

注意:僅當index.html文件的開頭部分中包含聲音庫時,所有與聲音相關的函數才起作用。

參數:該函數不接受任何參數。
返回值:此函數返回播放聲音文件的當前時間。


以下示例說明了JavaScript中的p5.js currentTime()函數:示例1:在此示例中,當前時間將為0,這是在必須使用play()函數之後調用當前時間的原因。

var sound;  
var crntm; 
     
function preload() {  
     
    // Initialize sound  
    sound = loadSound("pfivesound.mp3");  
}  
     
function setup() {  
     
    // Playing the preloaded sound  
    sound.play(); 
  
    //checking the current time  
    crntm = sound.currentTime(); 
    console.log(crntm); 
} 

範例2:在此示例中,當您單擊分配給當前時間的按鈕時,將顯示當前時間。該按鈕觸發currentTime()函數。

var sound;  
var crntm;    
  
function preload() {  
      
    // Initialize sound  
    sound = loadSound("song.mp3");  
}  
      
function setup() {  
      
    // Playing the preloaded sound  
    sound.play(); 
     
    //Creating button 
    crntm = createButton("Current Time"); 
    crntm.mousePressed(Currenttime); 
}  
  
function Currenttime() { 
  
    //will display the current time by button  
    var crrnt = sound.currentTime(); 
    console.log(crrnt); 
}

在線編輯:
環境設置:

支持的瀏覽器:下麵列出了p5.js currentTime()函數支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • 蘋果瀏覽器
  • Opera


相關用法


注:本文由純淨天空篩選整理自skyridetim大神的英文原創作品 p5.js | currentTime() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。