您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. html5中为audio标签增加停止按钮动作实现方法

  2. 在html 5中的audio标签中,只有暂停按钮,但没有停止按钮,其实为其增加也不麻烦,接下来介绍实现方法,有需要的朋友可以参考下
  3. 所属分类:其它

    • 发布日期:2020-09-28
    • 文件大小:24576
    • 提供者:weixin_38680764
  1. html5中为audio标签增加停止按钮动作实现方法

  2. 在html 5中的audio标签中,只有暂停按钮,但没有停止按钮,其实为其增加也不麻烦,方法如下: 复制代码代码如下: HTMLAudioElement.prototype.stop = function() { this.pause(); this.currentTime = 0.0; } 其实很简单,就是先暂停,然后时间归0; 调用方法: 复制代码代码如下: var aud = new Audio(); aud.src = ‘特殊他.ogg’; aud.play(); aud.stop
  3. 所属分类:其它

    • 发布日期:2020-12-13
    • 文件大小:22528
    • 提供者:weixin_38693524