Appcelerator是否100%支持JQuery和CSS3
我之前使用 PhoneGap 创建了一个杂志应用程序,但我对该应用程序的性能并不满意。我做了功课,研究把我带到了appcelerator。我似乎无法在 Appcelerator 中找到是否 100% 支持 Jquery(及其所有插件)和 CSS3 转换。我想知道我是否在浪费时间学习 API,因为我的杂志需要 CSS3 和一些 JQuery 插件的使用。如果有更好的方法来满足我的需求,也请指出。谢谢你!
I previously created a magazine app using PhoneGap and I wasn't satisfied with the performance of the app. I did my homework and researches brought me to appcelerator. I can't seem to find in Appcelerator whether there is a 100% support with Jquery (with all its plugins) and CSS3 transforms. I want to know if I am not wasting my time learning the API because my magazines NEED CSS3 and the use of some JQuery plugins. Please mention as well if there is a better way to satisfy my needs. Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Titanium Desktop 使用 webkit 引擎,因此您将获得 webkit 具有的任何 html5/css3 功能。
Titanium mobile 已转向基于 JavaScript 的工作流程,但您仍然可以启动 WebView,这将允许您使用 html + css 进行开发。 (同样,基于 webkit)
请参阅: http://developer.appcelerator.com /apidoc/mobile/1.0/Titanium.UI.WebView
基于本机的视图将比使用 WebView 更快。
Titanium Desktop uses the webkit engine, So you'll get whatever html5/css3 features webkit has.
Titanium mobile moved to a JavaScript-based workflow, but you can still pull up a WebView which would allow you to use html + css for development. (again, webkit based)
see: http://developer.appcelerator.com/apidoc/mobile/1.0/Titanium.UI.WebView
Native-based views will be faster than using WebViews.