Guest User

Untitled

a guest
Apr 23rd, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. var n = 0;
  2. //Reiniciar o contador em qualquer ação do usuario
  3. document.onclick = function() {
  4. n = 0;
  5. };
  6. document.onmousemove = function() {
  7. n = 0;
  8. };
  9. document.onmousedown = function() {
  10. n = 0;
  11. };
  12. document.onscroll = function() {
  13. n = 0;
  14. };
  15. document.onkeypress = function() {
  16. n = 0;
  17. };
  18.  
  19. document.onmousemove = function() {
  20. n = 0;
  21. };
  22.  
  23.  
  24. window.setInterval(function() {
  25. if (n > 180000) {//tempo em milissegundos para trocar de pagina
  26. window.location = "suapagina.php";//redireciona para suapagina.php
  27. window.document.write("<?PHP session_destroy();?>"); //encerrar a sessao do usuario
  28. } else {
  29. n = n + 1000;
  30. }
  31. }, 1000);
Add Comment
Please, Sign In to add comment