当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。