Device OrientationChange Demo

Size
1,923 Kb
Views
40,480

How do I make an device orientationchange demo?

Requires a device with an accelerometer.https://developer.microsoft.com/en-us/microsoft-edge/platform/documentation/dev-guide/device/device-orientation-and-motion-events/. What is a device orientationchange demo? How do you make a device orientationchange demo? This script and codes were developed by Microsoft Edge Docs on 13 August 2022, Saturday.

Device OrientationChange Demo Previews

Device OrientationChange Demo - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Device OrientationChange Demo</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div id="directions"></div> <script src="js/index.js"></script>
</body>
</html>

Device OrientationChange Demo - Script Codes CSS Codes

html { font-family: segoe, sans-serif; font-size: 2em; color: dodgerBlue; margin: 20px;
}
div { border: 5px solid grey; border-radius: 15px; width: 200px; height: 50px; background: lightgrey; margin:0 auto; text-align:center; padding-top:10px;
}

Device OrientationChange Demo - Script Codes JS Codes

window.addEventListener("deviceorientation", findNorth); function findNorth(evt) { var directions = document.getElementById("directions"); if (evt.alpha < 5 || evt.alpha > 355) { directions.innerHTML = "North!"; } else if (evt.alpha < 180) { directions.innerHTML = "Turn left"; } else { directions.innerHTML = "Turn right"; } }
Device OrientationChange Demo - Script Codes
Device OrientationChange Demo - Script Codes
Home Page Home
Developer Microsoft Edge Docs
Username MicrosoftEdgeDocumentation
Uploaded August 13, 2022
Rating 3
Size 1,923 Kb
Views 40,480
Do you need developer help for Device OrientationChange Demo?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Microsoft Edge Docs (MicrosoftEdgeDocumentation) Script Codes
Create amazing web content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!