我有一个网页,当我在X秒后不使用该页面时,也就是说,当上次操作后达到一定时间时,我想截屏有可能吗?
有很多答案,一个简单的谷歌搜索将比提问更快地帮助你。
此外,
let timeout
let seconds = 2
function screenshot(){
clearTimeout(timeout)
timeout = setTimeout(function(){takescreenshot()},seconds*1000)
}
document.body.addEventListener("mousemove",function(){screenshot()});
document.body.addEventListener("click",function(){screenshot()})