var $horizontal = $('.horizontal_screen'); //Kann den Eingabeaufforderungsstil im Querformat anpassen
var $document = $(document) ; = function(e) {
$document.on('touchstart touchmove', präventDefault);
var touchend = function(e) {
$document.off('touchstart touchmove' , präventDefault);
};
function listener(type){
if('add' == type){
//Portrait mode
$horizontal.addClass(' hide');
$document.off('touchstart', touchstart);
$document.off('touchend', touchend); $horizontal.removeClass('hide');
$document.on('touchstart', touchstart);
$document.on('touchend', touchend); >function OrientierungChange(){
switch(window.orientation) {
//Portrait mode
case 0:
case 180:
listener('add');
//Landschaftsmodus
case -90:
case 90:
listener('remove');
break;
}
$ (window).on("onorientationchange" in window ? "orientationchange" : "resize", OrientationChange);
$document.ready(function(){
//Im Querformat Aufrufen der Benutzeroberfläche, Die Eingabeaufforderung unterstützt nur den vertikalen Bildschirm
if(window.orientation == 90 || window.orientation == -90){
listener('remove'}
}); >