📜  p5.js | currentTime()函数

📅  最后修改于: 2022-05-13 01:56:24.380000             🧑  作者: Mango

p5.js | currentTime()函数

currentTime()函数是 p5.js 库中的内置函数。此函数用于以秒格式返回在网络上播放该时间的声音文件的当前时间。如果调用了 reverseBuffer,则当前时间将开始倒计时。
句法:

currentTime()

注意:只有当声音库包含在 index.html 文件的 head 部分中时,所有与声音相关的功能才有效。

参数:此函数不接受任何参数。
返回值:该函数返回当前播放声音文件的时间。

以下示例说明了 JavaScript 中的p5.js currentTime()函数
示例 1:在此示例中,当前时间将为 0,这是在 hust 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);
}

在线编辑器: https://editor.p5js.org/
环境设置: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/

支持的浏览器: p5.js currentTime()函数支持的浏览器如下:

  • 谷歌浏览器
  • IE浏览器
  • 火狐
  • 苹果浏览器
  • 歌剧