• 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});   //无动作时间  
    }        
  • 相关阅读:
    配送单MYSQL ,一点都不机智
    强哥新周报SQL
    SQL 交叉连接与内连接
    pycharm git 提交使用情况
    MYSQL freedata 外联接
    SQL 添加字段
    邮件发送方法代码时
    调通有赞接口数据,翻页获取
    superset dashboard 设置自动刷新
    python 语法错误记录
  • 原文地址:https://www.cnblogs.com/zhuxingqing/p/11511529.html
Copyright © 2020-2023  润新知