الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <h1>JavaScript Get Screen Orientation</h1> <p id="demo"></p> <script> // demo في متغير إسمه demo يساوي id هنا قمنا بتخزين العنصر الذي يملك var demo = document.getElementById('demo'); if (screen.orientation.type == null) { // demo مدعومة في المتصفح سيتم عرض هذه الراسلة في العنصر الذي يمثله المتغير orientation.type إذا لم تكن الخاصية demo.innerHTML = 'The orientation API is not supported in this browser.'; } else { // demo مدعومة في المتصفح سيتم عرض إتجاه الشاشة في العنصر الذي يمثله المتغير orientation.type إذا كانت الخاصية demo.innerHTML = 'Screen Orientation is: ' + screen.orientation.type; } </script> </body> </html>