Is there a way to make each pages load by sliding in from a different direction? (X and Y axis)

Like in this example: single page site scrolling to div

The reason for this is because it doesnt work on iPads/iPhone (they don't support fixed element, the whole page scrolls). I figured if there was a header menu and a footer maybe I could achieve this effect.

Then, mobiles would render a regular web page. Also, I guess it would be easier for the client to manage things via a CMS.

Thanks in advance.

ive d.

...Again, sorry for my lousy English ;)

link|improve this question
feedback

1 Answer

You can serve different css to a mobile device by using the ="handheld" switch.

I suggest looking into User Agent Detection, such with PHP similar to:

<? if (
 stristr($ua, "Windows CE") or
 stristr($ua, "AvantGo") or
 stristr($ua,"Mazingo") or
 stristr($ua, "Mobile") or
 stristr($ua, "T68") or
 stristr($ua,"Syncalot") or
 stristr($ua, "Blazer") ) {
 $DEVICE_TYPE="MOBILE";
 }
 if (isset($DEVICE_TYPE) and $DEVICE_TYPE=="MOBILE") {
 $location='mobile/index.php';
 header ('Location: '.$location);
 exit;
 }
 ?> 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.