我有几个 data-role="page"(s) 并且我使用 data-transition="slide" 转换到下一页。我的问题是在移动设备(iOS 或 Android)上,下一页 (page5) 滑动并与当前页面重叠一秒钟。关于修复的任何想法?
<div data-role="page" id="page4">
<div data-role="header" class="header" data-position="fixed" data-id="staticS">
<h1>Page 4</h1>
</div>
<div data-role="content">
content here
</div>
<div class="footer" data-role="footer" data-position="fixed" data-id="staticS">
<a href="#page5" data-transition="slide"></a>
</div>
</div>