HTML5框架

发布于 2024-11-27 14:57:56 字数 139 浏览 1 评论 0原文

我对 HTML 或 Web 开发知之甚少,但我想写一个 HTML5 应用程序具有相当复杂的 UI。有没有一个框架可以站稳脚跟 适合这种类型的工作吗?我需要一个框架吗?或者可以 我只是用 HTML+CSS+JS 做所有事情?那么 GWT 呢?

谢谢!

I know very little HTML or web dev, but I would like to write an
HTML5 app with a fairly complex UI. Is there a framework that stands
out among the rest for this type of job? Do I need a framework; or can
I just do everything in straight HTML+CSS+JS? And what about GWT?

Thanks!

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

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

发布评论

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

评论(3

小红帽 2024-12-04 14:57:56

作为通用的 HTML5 起始模板,Boilerplate 始终是一个不错的选择。

它将优化和链接您的所有脚本和 CSS 文件,以及 HTML 代码和图像,它还附带了 Modernizr 等有用的工具。

如果您正在寻找 JavaScript 库,YUI 在 UI 方面是一个非常好的库,尽管也许一开始比 jQuery 或 jQuery UI 稍微复杂一些。我发现它比 jQuery UI 更好,并且无论如何都可以与 jQuery 一起工作。

编辑

您可能还对Ext JS感兴趣。看看它提供的演示,看起来真的像一个强大的库,有许多现成的 UI 小部件。但从未使用过它,而且看起来它只提供商业许可证

As a general HTML5 starting template, Boilerplate is always a good choice.

It will optimize and chain all your scripts and CSS files, as well as your HTML code and images, it also comes with useful tools like Modernizr.

If you are looking for JavaScript libraries, YUI is a very good library when it comes to UI, though maybe a little more complicated than jQuery or jQuery UI at first. I found it better than jQuery UI, and can work together with jQuery anyway.

EDIT

You may also be interested in Ext JS. Looking at the demo it provides, seems really like a powerful library with many ready to use UI widgets. Never used it though, and looks like it only offers a commercial license.

另类 2024-12-04 14:57:56

GWT 是构建复杂 Web 应用程序的好方法,特别是如果您熟悉 java 但不熟悉 javascript。 GWT 现在提供对 HTML5 功能的支持,例如离线存储、画布、音频和视频,尽管可以使用任何 HTML5 功能,无论 GWT 是否提供特定的 Java 类来支持它们(我在我的一个应用程序中实现了离线存储功能)在它成为 GWT 的一部分之前)。使用 GWT 将缓解您在直接使用 HTML+CSS+JS 时遇到的许多浏览器兼容性问题。虽然你用 Java 编写,但熟悉 HTML、CSS 和 JS 仍然很重要,因为 java 被编译为 js。

GWT is a good way to go for a complex web application, particularly if you're familiar with java but not javascript. GWT now provides support for HTML5 features such as offline storage, canvas, audio, and video, although it's possible to use any HTML5 features whether GWT provides specific Java classes to support them or not (I implemented the offline storage feature in one of my apps before it was part of GWT). Using GWT will mitigate many of the browser compatibility problems you will encounter with straight HTML+CSS+JS. Although you write in Java, it's still important to be familiar with HTML, CSS and JS, since the java is compiled to js.

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