Xui.js 页面剖析
信息: 我正在使用 JQuery Mobile(在 Phonegap 中)构建页面并通过 $.mobile.changePage() 或哈希进行导航。
这是 JQuery Mobile 页面剖析:
<div id="foo" data-role="page">
<div data-role="header">...</div>
<div data-role="content">...</div>
<div data-role="footer">...</div>
</div>
问题: 我正在寻找XUI.js页面剖析,因为关于这个库的文档确实很差。
Info:
I am using JQuery Mobile (in Phonegap) for building pages and navigating via them by $.mobile.changePage() or hash.
This is JQuery Mobile page anatomy:
<div id="foo" data-role="page">
<div data-role="header">...</div>
<div data-role="content">...</div>
<div data-role="footer">...</div>
</div>
Problem:
I am looking for XUI.js page anatomy, because there is really poor documentation about this library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 Phill 所说,XUI 并不是为将 DIV 管理为“页面”而设计的,但它是可以做到的。 Andrew Lunny 在他的入门应用程序中构建了一个轻量级页面控件。您可以检查 Github 上的源代码,看看他如何将 DIV 转换为页面。它需要 CSS 和相关 DIV 上的设置类的组合。
再次; jQueryMobile 是专门为您完成这一切而设计的。旭不是。
As Phill said, XUI isn't designed for managing DIVs as "pages", but it can be done. Andrew Lunny has built a lightweight page control in his starter application. You can inspect the source on Github and see how he converts the DIVs to pages. It requires a combination of CSS and setting classes on the DIVs in question.
Again; jQueryMobile is designed very specifically to do this all for you. XUI is not.