有没有办法让页面的页眉和页脚保持稳定,并且只在 jquerymobile 中移动页面的内容部分在两个页面之间进行转换?
我有以下两页
page1.html
<header>
....
</header>
<content>
....<!--content1-->
</content>
<footer>
.....
</footer>
page2.html
<header>
....
</header>
<content>
....<!--content2-->
</content>
<footer>
.....
</footer>
逻辑:
- 我需要在页面之间使用幻灯片过渡。
- 我正在使用 JQueryMobile、phoneGap
问题:
- 如何在页面中保持页眉和页脚稳定?即只有内容部分在过渡时移动
- 我希望它可以在 ios 和 android 设备上运行。
- 有没有任何css方式来做到这一点?