Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Javascript

जावास्क्रिप्ट/एचटीएमएल5 के साथ तुरंत ध्वनि उत्पन्न करना


वेब ऑडियो API का उपयोग ऑडियो को नियंत्रित करने के लिए किया जाता है, जो आपको ऑडियो स्रोत चुनने की अनुमति देता है। आप प्रभाव भी जोड़ सकते हैं; ऑडियो विज़ुअलाइज़ेशन, पैनिंग आदि बनाएं.

उदाहरण

ध्वनि उत्पन्न करने के लिए आप निम्न कोड स्निपेट चलाने का प्रयास कर सकते हैं -

// 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

  1. जावास्क्रिप्ट के साथ क्लिपबोर्ड पर टेक्स्ट कैसे कॉपी करें?

    जावास्क्रिप्ट के साथ टेक्स्ट को क्लिपबोर्ड पर कॉपी करने के लिए निम्नलिखित कोड है - उदाहरण <!DOCTYPE html> <html> <head> <style> button {    border: none;    outline: none;    background-color: rgb(191, 187, 255);    color: black;  

  1. जावास्क्रिप्ट में केवल चालू वर्ष कैसे प्रदर्शित करें?

    केवल चालू वर्ष प्रदर्शित करने के लिए, getFullYear() का उपयोग करें। निम्नलिखित कोड है - उदाहरण <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initialscale=1.0"> &

  1. जावास्क्रिप्ट के साथ आंतरिक HTML सेट करें

    आंतरिक HTML सेट करने के लिए सही सिंटैक्स इस प्रकार है - document.getElementById(“yourIdName”).innerHTML=”yourValue”; आइए अब देखें कि आंतरिक HTML कैसे सेट करें - उदाहरण <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8">