(1)Web常见控件介绍

https://www.cnblogs.com/hanke123/p/5940595.html

(2)JS无鼠标键盘操作时跳转页面

<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.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.location = 'http://www.baidu.com';   
    }       
}   

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});   
}   

function window.onload(){   
  initScreenSaver();   
}   

</script>   
    </head>   
    <body>   
</p>5秒不动就跳转   
    </body>   
</html>  

(3)CSS书写规范

https://www.cnblogs.com/Lxb98117/p/W3c-norm.html

SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。

 

扫码关注我们
微信号:SRE实战
拒绝背锅 运筹帷幄