AutoCAD 3DMAX C语言 Pro/E UG JAVA编程 PHP编程 Maya动画 Matlab应用 Android
Photoshop Word Excel flash VB编程 VC编程 Coreldraw SolidWorks A Designer Unity3D
 首页 > html5

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

51自学网 http://www.wanshiok.com
audio标签,停止按钮在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();

上面代码可以在chrome,opera下跑,但firefox 17不行

audio标签,停止按钮  
上一篇:html5中地理位置定位api接口开发应用小结  下一篇:html5 button autofocus 属性介绍及应用