Hallo Michael,
das ist richtig - sliden geht nur nach rechts und links. Aber egal wo man auf der Seite versucht, nach oben oder unten zu scrollen: Nichts bewegt sich. Es geht nur an den äussersten Rändern und die meisten Besucher "raffen" das dann nicht und halten die Seite für "kaputt"...
Könnte tatsächlich am Retina Display liegen - Ist ein iPad mini Retina. Ich würde es Dir sofort geben: Verdient hättest Du es. Aber dann hätte ich keins mehr und ich muss zugeben, dass es mir sehr fehlen würde.
Ich bitte Dich noch um einen Tipp, wo ich die entsprechenden Änderungen in der setbrowser.inc.php vornehmen soll. Ich will lieber nichts zerschießen...
Code:
<?php
/*************************
Copyright (c) 2004-2014 TinyWebGallery
written by Michael Dempfle
This program is free software; you can redistribute it and/or modify
it under the terms of the TinyWebGallery license (based on the GNU
General Public License as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later version.
See license.txt for details.
TWG version: 2.0.4
$Date: 2009-06-17 22:57:10 +0200 (Mi, 17 Jun 2009) $
$Revision: 73 $
**********************************************/
defined('_VALID_TWG') or die('Direct Access to this location is not allowed.');
$msie = true;
$opera = false;
$wii = false;
$isns = false;
$safari = false;
$iswindowsServer = false;
$isMac = false;
$opera7 = false;
$twg_mobile = false;
$isIpad = false;
$isIphone = false;
if (isset($_SERVER['HTTP_USER_AGENT'])) {
$ua = strtolower($_SERVER['HTTP_USER_AGENT']);
$msie = strstr($ua, 'msie');
$opera = strstr($ua, 'opera');
$isns = strstr($ua, 'mozilla') && (!(strstr($ua, 'compatible')));
$safari = strstr($ua, 'safari');
$wii = strstr($ua, 'wii');
$iswindowsServer = stristr(PHP_OS, 'win');
$iswindows = strstr($ua, 'win');
$isMac = strstr($ua, 'mac');
$opera7 = strstr($ua, 'opera/7');
$isIpad = strstr($ua, 'ipad');
$isIphone = strstr($ua, 'iphone');
// we check if a mobile device is using TWG and we remove some stuff.
$twg_mobile = $enable_mobile_detection && (strstr($ua, 'windows ce') || strstr($ua, 'iphone') || strstr($ua, 'symbian') ||
strstr($ua, 'opera mini') || strstr($ua, 'up.browser') || strstr($ua, 'opera mobi') ||
strstr($ua, 'blackberry') || strstr($ua, 'nokia') || strstr($ua, 'sonyericsson') || strstr($ua, 'android'));
}
?>
Es dankt herzlich im Voraus
das A