设计 Groupon(以及类似网站)的外观
我希望设计出外观和感觉类似于 Groupon、Twitter 等。我需要留在微软领域,因为那是我们公司开发的。我们尝试过 Silverlight,但我不太满意。我应该怎么办?
I am looking to design web applications that look and feel similar to Groupon, Twitter, etc. I need to stay in the Microsoft arena, since that's what our company developes. We have tried Silverlight, but I have not been too pleased. What should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Twitter 和 Groupon 基本上都是前端丰富的 HTML/CSS/JavaScript 应用程序。 “丰富”,因为他们大量利用 Ajax 和 CSS 2 & 3 并且具有高度交互性(通过使用 JavaScript)。
ASP.NET 是为此类网站提供支持的不错选择。您的团队需要成为以下方面的专家:
跨浏览器、跨设备 HTML。社交网站还需要对低带宽用户提供一定程度的支持,并明确支持不同的可访问性要求。
一个好的 JavaScript 库(或多个库),例如 jQuery、YUI 等。
CSS 2 和 CSS 3(以及 HTML 5即将到来)。
用于处理高流量的缓存机制。
用于呈现交互式动态内容的异步方法(JavaScript 很好)。
Twitter and Groupon are basically rich HTML/CSS/JavaScript applications on the front-end. "Rich", because they heavily leverage Ajax and CSS 2 & 3 and are highly interactive (through the use of JavaScript).
ASP.NET is a fine choice for powering such a website. Your team will need to be experts at:
Cross-browser, cross-device HTML. A social networking site also requires a level of support for low bandwidth users and definite support for different accessibility requirements.
A good JavaScript library (or libraries) such as jQuery, YUI, etc.
CSS 2 and CSS 3 (and HTML 5 is around the corner).
Caching mechanisms for handling high traffic.
Asynchronous methodologies (JavaScript is fine) for presenting interactive, dynamic content.