जावास्क्रिप्ट में पृष्ठभूमि छवि के स्थान निर्धारण क्षेत्र को सेट करने के लिए, पृष्ठभूमि उत्पत्ति का उपयोग करें संपत्ति।
उदाहरण
पृष्ठभूमि के लिए छवि के स्थान निर्धारण क्षेत्र को कैसे सेट करें, यह जानने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <head> <style> #box { border: 2px dashed yellow; padding: 35px; width: 600px; height: 400px; background: url('https://www.tutorialspoint.com/videotutorials/images/coding_ground_home.jpg') no-repeat; } </style> </head> <body> <button onclick="display()">Set area of background image</button> <div id="box"> This is Demo Text! This is Demo Text! This is Demo Text! This is Demo Text! This is Demo Text! </div> <script> function display() { document.getElementById("box").style.backgroundOrigin = "content-box"; } </script> </body> </html>