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});   //无动作时间  
    }        
  • 相关阅读:
    BZOJ 2957: 楼房重建
    模积和(bzoj 2956)
    Four-tuples(2018山东省赛 F)
    Best Rational Approximation( 法里数列)
    K
    Now Loading!!!(ZOJ Problem Set
    Treasure Map(Southeast USA ICPC 2017)
    三角形的内点
    小b和灯泡
    不降的数字
  • 原文地址:https://www.cnblogs.com/zhuxingqing/p/11511529.html
Copyright © 2011-2022 走看看