页面加载效果-每个新页面从不同的方向滑动(…作为一个单页网站使用scrollTo)

Page load effects - each new page slides in from a different direction (... as a single page site using scrollTo)

本文关键字:一个 scrollTo 网站 单页 方向 加载 新页面      更新时间:2023-09-26

是否有一种方法可以使每个页面从不同的方向滑动加载?(X和Y轴)

就像这个例子:单页站点滚动到div

这样做的原因是因为它不能在ipad/iPhone上工作(他们不支持固定元素,整个页面滚动)。我想如果有一个页眉菜单和一个页脚,也许我可以达到这个效果。

然后,手机将呈现一个常规的网页。另外,我想客户通过CMS管理东西会更容易。

提前感谢。

d。

…再次为我蹩脚的英语道歉;)

您可以使用="手持"开关为移动设备提供不同的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;
 }
 ?>