DiggSpy 的改进或变化
在设计 Web 界面的第 14 章中,作者 Scott 和 Neil 定义了“定期刷新”模式并引用了Digg 的 DiggSpy 作为典型示例。
我同意该模式及其表现形式是向用户提供实时信息的绝佳方式。
我面临着类似的挑战。 我希望 javascript (和 jQuery)能够不断更新网页上的信息 div。
我的布局在两个重要方面与 DiggSpy 不同:
- 多个 div 将同时更新(但不同步)。
- div 不会跨越页面的宽度。
- 换句话说,它们将更像正方形而不是矩形。
尽管我渴望更新,但我牢记一个原则,即应谨慎使用动画,以避免让用户感到困惑(或无聊)。
我的问题:
您是否看到任何改进或 DiggSpy 的变体举例说明 “定期刷新”模式和 可能适合我的目的?
In Chapter 14 of Designing Web Interfaces, authors Scott and Neil define the 'Periodic Refresh' pattern and cite Digg's DiggSpy as a canonical example.
I agree that the pattern and its manifestation are excellent ways of serving real-time information to the user.
I'm facing a similar challenge. I'd like javascript (and jQuery) to continuously update divs of information on a web page.
My layout will differ from DiggSpy in two important ways:
- Multiple divs will be updating simultaneously (but not synchronously).
- The divs will not span the width of the page.
- In other words, they will be more square than rectangular.
In spite of my desire for updates, I'm mindful of the principle that you should use animation sparingly so as to avoid confusing (or boring) the user.
My question:
Have you seen any improvements or
variations of DiggSpy that exemplify
the 'Periodic Refresh' pattern and
might be appropriate for my purposes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试多个简单间谍实例。
这是“操作方法”页面。
Try multiple simple spy instances.
Here's the 'How-to' page.