如果 10 分钟后没有用户在网页上活动,我想向上滚动到向下。我如何为它编写 jquery 代码?
我为它写了这段代码-
<script>
var time = new Date().getTime();
$(document.body).bind("mousemove keypress", function(e) {
time = new Date().getTime();
});
function refresh() {
if(new Date().getTime() - time >= 600000)
{
$('html, body').animate({scrollTop: '500px'}, 800);
}
else
{
setTimeout(refresh, 600000);
}
}
setTimeout(refresh, 600000);
</script>