Computer >> Máy Tính >  >> Lập trình >> Javascript

Tạo âm thanh nhanh chóng với JavaScript / HTML5


Web Audio API được sử dụng để kiểm soát âm thanh, cho phép bạn chọn nguồn âm thanh. Bạn cũng có thể thêm các hiệu ứng; tạo hình ảnh âm thanh, lia máy, v.v.

Ví dụ

Bạn có thể thử chạy đoạn mã sau để tạo âm thanh -

// use one context per document. Here we are creating one context for one document. You can create for other documents also
var context = new (window.AudioContext || window.webkitAudioContext)();

// oscillator
var os = context.createOscillator();  
os.type = 'sine'; // sine is the default. So you can also use square, saw tooth, triangle
os.frequency.value = 500; // setting the frequency Hz
os.connect(context.destination); // connecting  to the destination

// starting the oscillator
os.start();  
os.stop(context.currentTime + 5); // stop 5 seconds after the current time