hero

Buzz.js

audio 音频操作库

v 1.2.1 →

体积小

gzip 后 < 1kb

操作 <audio> 标签

助力您轻松地在网站中引入和管理声音

高兼容性

兼容非现代浏览器

安装

npm install --save buzz
1

简单示例

var sound = new buzz.sound("/sounds/sound", {
    formats: [ "ogg", "mp3", "aac" ]
});

sound.play()
     .fadeIn()
     .loop()
     .bind("timeupdate", function() {
        var timer = buzz.toTimer(this.getTime());
        document.getElementById("timer").innerHTML = timer;
     });
1
2
3
4
5
6
7
8
9
10
11