जावास्क्रिप्ट के साथ मीडिया प्रश्नों का उपयोग करने के लिए, कोड इस प्रकार है -
उदाहरण
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; color: white; padding: 20px; } </style> </head> <body> <h1>Using media queries with JavaScript Example</h1> <h2>Resize the screen to see the color change from blue to red</h2> <script> var mediaQuery = window.matchMedia("(max-width: 700px)"); function setColor(mediaQuery) { if (mediaQuery.matches) { document.body.style.backgroundColor = "red"; } else { document.body.style.backgroundColor = "blue"; } } setColor(mediaQuery); mediaQuery.addListener(myFunction); </script> </body> </html>
आउटपुट
उपरोक्त कोड 700px से अधिक विंडो आकार पर निम्न आउटपुट उत्पन्न करेगा -
ब्राउज़र विंडो का आकार 700px से कम करने पर -