如何为 iPad 构建 GMAIL 等 iPad Web 应用程序

发布于 2024-09-04 17:40:56 字数 99 浏览 2 评论 0原文

我有兴趣构建 iPad Web 应用程序,例如 GMAIL iPad Web 应用程序。构建它的最佳方法是什么?最好的框架是什么? jqtouch、webkit等

谢谢

I'm interested in building am iPad web app like The GMAIL iPad web app. What is the best way to build it? What is the best framework? Jqtouch, webkit, etc.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

孤独患者 2024-09-11 17:40:56

jQTouch 是一个稳定的开源框架,由现在从事 Sencha Touch 工作的一些人开发/设计,并且它拥有相当强大的社区和可扩展性支持。

http://jqtouch.com/

jQTouch is a stable open source framework developed/designed by some of the same guys that are now working on Sencha Touch, and it has a fairly robust community and extensibility support.

http://jqtouch.com/

水溶 2024-09-11 17:40:56

如果您使用 JQuery 作为 JS 开发库,那么 JQuery Mobile 是最“官方”的移动框架,并且是目前正在制作中,在撰写本文时,Beta 版本正在准备中,我肯定会选择它,因为 JQuery 的人员在背后提供持续的开发和支持。

If you are using JQuery as your JS development library then JQuery Mobile is the most "Official" mobile framework for it and is currently in the make, as of writing this a Beta release is being cooked, I would certainly go for it since JQuery's people are behind it for continuous development and support.

葬花如无物 2024-09-11 17:40:56

如果它只是一个网络应用程序,您可以创建一个带有框架的页面。它们不可调节,但除此之外它们对我来说是一样的。我有一个基本上是框架的网站,它在 iPad 上的外观与在浏览器中的外观相同。 Gmail 可能是一个两框架应用程序。
例如:

<html>
<head>
<title>Sheduler</title>
</head>
<frameset rows="40,*"
    marginheight="0" 
    frameborder="5" framespacing="5">
   <frame name="top" scrolling="no" noresize target="contents" src="/cgi-bin/cgi/ngfop/other2.pl?htmlname=top2.htm&name=Students.xml">
  <frameset cols="30%,*,*">
    <frame name="left" target="main" src="/cgi-bin/cgi/ngfop/other2.pl?htmlname=left01frame.htm&name=blank.xml">
    <frame name="middle" src="/cgi-bin/cgi/ngfop/other2.pl?htmlname=blank.htm">
    <frame name="right"  src="/cgi-bin/cgi/ngfop/other2.pl?htmlname=editschframe.htm&name=blank.xml">
  </frameset>
  <noframes>
  <body>
  <p>This page uses frames, but your browser doesn't support them.</p>
  </body>
  </noframes>
</frameset>
</html>

Well if its just a web app you can create a page with frames. The're not adjustable but other then that they've been working the same for me. I have a website that is basically frames and it looks the same on the iPad as in a browser. The gmail could be a two frame app.
For example:

<html>
<head>
<title>Sheduler</title>
</head>
<frameset rows="40,*"
    marginheight="0" 
    frameborder="5" framespacing="5">
   <frame name="top" scrolling="no" noresize target="contents" src="/cgi-bin/cgi/ngfop/other2.pl?htmlname=top2.htm&name=Students.xml">
  <frameset cols="30%,*,*">
    <frame name="left" target="main" src="/cgi-bin/cgi/ngfop/other2.pl?htmlname=left01frame.htm&name=blank.xml">
    <frame name="middle" src="/cgi-bin/cgi/ngfop/other2.pl?htmlname=blank.htm">
    <frame name="right"  src="/cgi-bin/cgi/ngfop/other2.pl?htmlname=editschframe.htm&name=blank.xml">
  </frameset>
  <noframes>
  <body>
  <p>This page uses frames, but your browser doesn't support them.</p>
  </body>
  </noframes>
</frameset>
</html>
夜灵血窟げ 2024-09-11 17:40:56

这里列出了其他 18 个移动框架,它们的复杂性和实用性各不相同。 (我无法在一篇文章中使用 2 个链接)

http://iphoneized.com/2009/11/18-mobile-frameworks-development-tools-creating-iphone-apps/

And here is a list of 18 other mobile frameworks with varying levels of complexity and usefulness. (I couldn't use 2 links in a single post)

http://iphoneized.com/2009/11/18-mobile-frameworks-development-tools-creating-iphone-apps/

那请放手 2024-09-11 17:40:56

现在有很多框架。

我个人使用 jquerymobile &看起来很有前途。我建议暂时使用 jquerymobile 而不是其他人,因为他们正在发布新的 &定期的有趣功能。

There are many frameworks now a days.

I personally used jquerymobile & it looks very promising. I recommend using jquerymobile over others for now as they are releasing new & interesting features on regular bases.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文