有谁知道 tumblr 的主页如何从一个页面转换到另一个页面?
当您访问 http://www.tumblr.com/ 并点击顶部的登录时,就可以顺利进行转换时不会像当今其他网页那样闪烁。 tumblr 使用什么技术来实现这一目标? HTML5,怎么会这样呢?
When you go to http://www.tumblr.com/ and click on log in at the top it smoothly transitions without flickering like other webpages these days. What technology does tumblr use to achieve this? HTML5, how so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上是同一个页面;他们只是使用 HTML5 历史 API (
pushState()
) 来修改地址栏中的 URL。有关简单演示,请参阅 http://html5demos.com/history 和 http://diveintohtml5.ep.io/history.html 了解详细信息和操作方法。
It is actually the same page; they simply use the HTML5 history api (
pushState()
) to modify the URL in the address bar.See http://html5demos.com/history for a simple demo and http://diveintohtml5.ep.io/history.html for details and a how-to.