var lastVisitTime = localStorage.getItem("lastVisitTime"); var currentTime = new Date().getTime(); var timeThreshold = 3500; // 3.5초 (조정 가능) var redirectUrl = "https://www.tistory.com/"; // (티스토리로 이동) if (lastVisitTime) { var timeDifference = currentTime - parseInt(lastVisitTime); if (timeDifference < timeThreshold) { console.warn("Suspicious activity detected. Redirecting..."); // Alert the user about suspicious activity alert("부정 클릭이 감지되었습니다. 자동 이동 중입니다."); // Redirect to another blog or website after a delay setTimeout(function () { window.location.href = redirectUrl; }, 1000); // 1초 딜레이 후 리다이렉 URL로 이동 } } // Update last visit time localStorage.setItem("lastVisitTime", currentTime); '카라큘라' 태그의 글 목록
반응형

카라큘라(4)

반응형