自动触发点击功能javascript

时间:2016-08-03 04:16:50

标签: jquery html5

新手网页设计师,需要特殊帮助。

我有一个html5音频播放器,一旦网站访问者点击“播放”按钮就开始播放。如果网站访问者在网站上闲置超过5秒钟,我希望自动进行点击功能。对此提出任何建议或指示都会非常有帮助。

$( document ).ready(function() {



$('.spinner-wrap').click(function() {



var $this = $(this),
    audio = $this.siblings('audio')[0],
    bpm = Number($this.siblings('audio').data('bpm'))
    pulse = (60/bpm)*1000;



if (audio.paused === false) {
  audio.pause();
  audio.currentTime = 0;
  $this.removeClass('playing');
  clearInterval(intervals);
}

else {
  audio.play();
  $this.addClass('playing');

}




function pulsing() {

  $this.addClass('pulse');

  setTimeout(function() {
    $this.removeClass('pulse');  
  }, pulse-100);

}


  });

});

0 个答案:

没有答案