有没有办法通过从不同方向滑入来加载每个页面? (X和Y轴)
就像在这个例子中一样:single page site scrolling to div
之所以这样是因为它在iPad / iPhone上不起作用(它们不支持固定元素,整个页面滚动)。我想如果有一个标题菜单和一个页脚,我可能会达到这个效果。
然后,手机将呈现常规网页。此外,我想客户端通过CMS管理事物会更容易。
提前致谢。
ive d。
......再次,抱歉我糟糕的英语;)
答案 0 :(得分:0)
您可以使用=“掌上电脑”开关为移动设备提供不同的CSS。
我建议调查用户代理检测,例如PHP类似于:
<? 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;
}
?>