zoukankan      html  css  js  c++  java
  • PC监听鼠标和键盘事件,定时无响应退出

    直接上代码:

    window.onload = function () {
        initScreenSaver();
    }
    
    //0912 add
    function ScreenSaver(settings){     
     
        this.settings = settings;     
            
        this.nTimeout = this.settings.timeout;     
                         
        document.body.screenSaver = this;     
        // link in to body events     
        document.body.onmousemove = ScreenSaver.prototype.onevent;     
        document.body.onmousedown = 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.history.back(-1)//无动作跳转地址  
       }     
    }     
    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(){
       saver = new ScreenSaver({timeout:20000});   //无动作时间  
    }        
  • 相关阅读:
    软考
    十步走-阅读笔记
    软著申请
    十步走-阅读笔记
    基于Ubuntu安装部署ZooKeeper
    基于Ubuntu安装JDK(OPenJDK8)
    Intern Day89
    阿里巴巴Java研发工程师技术一面
    面试
    6_moc.md
  • 原文地址:https://www.cnblogs.com/zhuxingqing/p/11511529.html
Copyright © 2011-2022 走看看