マウスなし、キーボード動作をモニタ


もっと読む
マウスなしキーボードの操作を監督して10秒後にタイムアウトを要求します.
 
ff chrome ie 9+にのみ使用します.
 

   
       
        
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
        <script type="text/javascript">   
      
            var keys=null;
            function check(){
                alert("   ")
            }
            function actionHd(e){
                window.clearTimeout(keys)
                keys=setTimeout("check()",10*1000);
            }
            function actionSet(hd){
                if( window.outerWidth == undefined ){
                    document.body.onkeydown=hd;
                    document.body.onmousedown=hd;
                    document.body.onmousemove=hd;
                }else{
                    onkeydown=hd;
                    onmousedown=hd;
                    onmousemove=hd;
                }
            }
            
            function initCheckNoAction(){
                actionSet(actionHd)
            }
        </script>   
      
       
       
        10        
       
 </code></pre>   
</div>
                            </div>
                        </div>