jQuery 在卸载前播放动画?
我不确定这是否可能,但我真的希望如此。我有一个网站 http://www.sarahnwatson.com。它在页面加载时播放几个 jQuery 动画,我想知道在页面卸载时是否可以反向播放它们。
如果是这样,怎么办?这是我试图使其工作的代码,但它根本不起作用。
$(window).bind('beforeunload', function(e) {
$list.children().each(function(i, el) { // loop through the LI elements within $list
$(el).delay(500 * i).animate({'left': '-300px'}, 1000);
});
return false;
});
相反,我只是得到一段对话。
I'm not sure if it's possible, but I am really hoping it is. I have a site at http://www.sarahnwatson.com. It has several jQuery animations playing when the page loads, I was wondering if I could do them in reverse when the page unloads.
If so, how? This is the code I am trying to make work, but it doesn't at all.
$(window).bind('beforeunload', function(e) {
$list.children().each(function(i, el) { // loop through the LI elements within $list
$(el).delay(500 * i).animate({'left': '-300px'}, 1000);
});
return false;
});
Instead I just get a dialogue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您只能控制源自页面中链接的事件。考虑到这一点,您可以覆盖页面中所有链接的点击事件。
You can only control events that originate from links in your page. With this in mind, you can override the click event of all links in your page.
我想你想卸载。
I think you want unload.
不幸的是,像
onbeforeprint
这样的onbeforeunload
并不在 W3C 标准 DOM 事件中,来自 MDN:
无论如何,微软已记录了此事件。您可以通过关闭浏览器来调用此事件。但由于某种原因,此事件不会阻止非 IE 浏览器中的默认浏览器行为(关闭窗口或选项卡)。
这是一篇关于
unload
事件的好文章,位于 webkit 文档Unfortunately
onbeforeunload
likeonbeforeprint
is not in W3C standard DOM events,From MDN:
Anyway Microsoft have this event documented. You can invoke this event by closing the browser. But for some reason this event is not preventing default browser behavior(closing window or tab) in non-IE browsers.
Here is a good article about
unload
event at webkit docs