gpt4 book ai didi

jquery - 每30秒自动返回家

转载 作者:行者123 更新时间:2023-12-01 04:21:25 25 4
gpt4 key购买 nike

如何让网站每 30 秒自动返回主页?

我正在设计一个将在医院大厅显示的网站,该网站在触摸屏上运行,以提供一般信息。我们需要在用户停止使用后自动返回主站点。

最佳答案

看看这个漂亮的 jQuery idletimer来自 Paul Irish 的插件和 demo here

基本上,它会在指定的空闲时间后触发回调函数,在此期间您可以将其转发回主页。

用法:

// idleTimer() takes an optional argument that defines the idle timeout
// timeout is in milliseconds; defaults to 30000
$.idleTimer(10000);

$(document).bind("idle.idleTimer", function(){
// function you want to fire when the user goes idle
});

$(document).bind("active.idleTimer", function(){
// function you want to fire when the user becomes active again
});

// pass the string 'destroy' to stop the timer
$.idleTimer('destroy');

请注意所涵盖的事件: 'mousemove keydown DOMMouseScroll mousewheel mousedown touchstart touchmove' From source code

关于jquery - 每30秒自动返回家,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10128226/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com