Orientation and Fullscreen
CSS
#overlay { background-color: red; }
JavaScript
if (screen.orientation) {
screen.orientation.lock('landscape');
}
#overlay { background-color: red; }
if (screen.orientation) {
screen.orientation.lock('landscape');
}