码迷,mamicode.com
首页 > Web开发 > 详细

web 实现5分钟 鼠标键盘无操作,自动退出登陆

时间:2017-05-12 22:27:59      阅读:366      评论:0      收藏:0      [点我收藏+]

标签:function   settings   鼠标键盘   events   

<html>   


<head>   


<script type="text/javascript">   


function ScreenSaver(settings){   

this.settings = settings;   

this.nTimeout = this.settings.timeout;   

document.body.screenSaver = this;   

// link in to body events   

document.body. = ScreenSaver.prototype.onevent;   

document.body. = ScreenSaver.prototype.onevent;   

document.body.onkeydown = ScreenSaver.prototype.onevent;   

document.body.onkeypress = ScreenSaver.prototype.onevent;   

       

var pThis = this;   

    

var f = function(){pThis.timeout();}   

    

this.timerID = window.setTimeout(f, this.nTimeout);   

}   


ScreenSaver.prototype.timeout = function(){   

    

if ( !this.saver ){   

        window.location = ‘/logout‘;   //退出登陆功能

    }   

}   


ScreenSaver.prototype.signal = function(){   

    if ( this.saver ){   

        this.saver.stop();   

    }   

       

    window.clearTimeout(this.timerID);   

       

    

var pThis = this;   

    

var f = function(){pThis.timeout();}   

    

this.timerID = window.setTimeout(f, this.nTimeout);   

}   

  


ScreenSaver.prototype.onevent = function(e){   

    

this.screenSaver.signal();   

}   

  

  


var saver;   


function initScreenSaver(){   

    //blort;   

    

saver = new ScreenSaver({timeout:5000});   

}   


window.onload = function(){   

  initScreenSaver();   

}   

  


</script>   

    

</head>   

    

<body>   


</p>5秒不动就跳转   

    

</body>   


</html>  


web 实现5分钟 鼠标键盘无操作,自动退出登陆

标签:function   settings   鼠标键盘   events   

原文地址:http://tulipmym.blog.51cto.com/2485509/1925055

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!